Skip to content

Commit

Permalink
move the sourcecode to new package
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jun 8, 2024
1 parent 7af933a commit ceeeaf6
Show file tree
Hide file tree
Showing 21 changed files with 20 additions and 22 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,6 @@ You can restore the project to a pristine state:

## Conventions

Package names begin with `jme3utilities.`

The source code and pre-built executables are compatible with JDK 8.

[Jump to the table of contents](#toc)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ java {
}

application {
mainClass = "jme3utilities.minie.tuner.VhacdTuner"
mainClass = "com.github.stephengold.tuner.VhacdTuner"
}
tasks.named<Jar>("jar") {
manifest {
Expand Down
2 changes: 1 addition & 1 deletion config/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@
<!-- Checks for naming conventions -->
<!-- See https://checkstyle.org/checks/naming -->
<module name="PackageName">
<property name="format" value="^[a-z][a-z3.]*[a-z]$"/>
<property name="format" value="^com[.]github[.]stephengold[.]tuner$"/>
<message key="name.invalidPattern"
value="Package name ''{0}'' must match pattern ''{1}''."/>
</module>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package jme3utilities.minie.tuner;
package com.github.stephengold.tuner;

import com.jme3.app.state.AppStateManager;
import com.jme3.bullet.PhysicsSpace;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package jme3utilities.minie.tuner;
package com.github.stephengold.tuner;

import com.jme3.bullet.collision.shapes.CollisionShape;
import com.jme3.bullet.collision.shapes.CompoundCollisionShape;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package jme3utilities.minie.tuner;
package com.github.stephengold.tuner;

import com.jme3.app.Application;
import com.jme3.app.SimpleApplication;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package jme3utilities.minie.tuner;
package com.github.stephengold.tuner;

import com.jme3.app.Application;
import com.jme3.app.state.AppStateManager;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package jme3utilities.minie.tuner;
package com.github.stephengold.tuner;

import com.jme3.app.Application;
import com.jme3.app.SimpleApplication;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package jme3utilities.minie.tuner;
package com.github.stephengold.tuner;

import com.jme3.app.Application;
import com.jme3.app.state.AppStateManager;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package jme3utilities.minie.tuner;
package com.github.stephengold.tuner;

import com.jme3.asset.AssetManager;
import com.jme3.scene.Spatial;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package jme3utilities.minie.tuner;
package com.github.stephengold.tuner;

import de.lessvoid.nifty.elements.Element;
import de.lessvoid.nifty.elements.render.TextRenderer;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package jme3utilities.minie.tuner;
package com.github.stephengold.tuner;

import com.jme3.app.Application;
import com.jme3.app.SimpleApplication;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package jme3utilities.minie.tuner;
package com.github.stephengold.tuner;

import com.jme3.app.Application;
import com.jme3.app.state.AppStateManager;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package jme3utilities.minie.tuner;
package com.github.stephengold.tuner;

import com.jme3.app.Application;
import com.jme3.app.SimpleApplication;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package jme3utilities.minie.tuner;
package com.github.stephengold.tuner;

import com.jme3.app.Application;
import com.jme3.app.state.AppStateManager;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package jme3utilities.minie.tuner;
package com.github.stephengold.tuner;

import com.jme3.app.DebugKeysAppState;
import com.jme3.app.state.AppState;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
/**
* A GUI application to configure V-HACD for a C-G model.
*/
package jme3utilities.minie.tuner;
package com.github.stephengold.tuner;
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
Nifty XML to lay out the GUI for the "filePath" screen of VhacdTuner.
-->
<nifty xmlns="http://nifty-gui.lessvoid.com/nifty-gui">
<screen id="filePath" controller="jme3utilities.minie.tuner.FilePathScreen">
<screen id="filePath" controller="com.github.stephengold.tuner.FilePathScreen">
<layer childLayout="vertical"
backgroundColor="#aaaf">
<panel childLayout="horizontal" height="28px">
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/Interface/Nifty/screens/tuner/load.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
Nifty XML to lay out the GUI for the "load" screen of VhacdTuner.
-->
<nifty xmlns="http://nifty-gui.lessvoid.com/nifty-gui">
<screen id="load" controller="jme3utilities.minie.tuner.LoadScreen">
<screen id="load" controller="com.github.stephengold.tuner.LoadScreen">
<layer childLayout="vertical">
<panel childLayout="horizontal" backgroundColor="#aaaf" height="28px">
<panel/>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/Interface/Nifty/screens/tuner/save.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
Nifty XML to lay out the GUI for the "save" screen of VhacdTuner.
-->
<nifty xmlns="http://nifty-gui.lessvoid.com/nifty-gui">
<screen id="save" controller="jme3utilities.minie.tuner.SaveScreen">
<screen id="save" controller="com.github.stephengold.tuner.SaveScreen">
<layer childLayout="vertical" backgroundColor="#aaaf">
<control name="radioButtonGroup" id="left" />
<control name="radioButtonGroup" id="right" />
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/Interface/Nifty/screens/tuner/test.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
Nifty XML to lay out the GUI for the "test" screen of VhacdTuner.
-->
<nifty xmlns="http://nifty-gui.lessvoid.com/nifty-gui">
<screen id="test" controller="jme3utilities.minie.tuner.TestScreen">
<screen id="test" controller="com.github.stephengold.tuner.TestScreen">
<layer childLayout="vertical">
<panel childLayout="horizontal" backgroundColor="#aaaf" height="25px">
<panel/>
Expand Down

0 comments on commit ceeeaf6

Please sign in to comment.