Subversion Repository Public Repository

litesoft

Diff Revisions 949 vs 950 for /trunk/GWT_Sandbox/MultiModule/anywhere/src/org/litesoft/sandbox/anywhere/die/Orientation.java

Diff revisions: vs.
  @@ -1,20 +1,20 @@
1 - package org.litesoft.sandbox.anywhere.die;
2 -
3 - public enum Orientation {
4 - L( "LeftHanded/Clockwise" ),
5 - R( "RightHanded/Counter-Clockwise" );
6 -
7 - private String mKnownAs;
8 -
9 - Orientation( String pKnownAs ) {
10 - mKnownAs = pKnownAs;
11 - }
12 -
13 - public String getKnownAs() {
14 - return mKnownAs;
15 - }
16 -
17 - public String getDescription() {
18 - return mKnownAs + " around the 123 vertice";
19 - }
20 - }
1 + package org.litesoft.sandbox.anywhere.die;
2 +
3 + public enum Orientation {
4 + L( "LeftHanded/Clockwise" ),
5 + R( "RightHanded/Counter-Clockwise" );
6 +
7 + private String mKnownAs;
8 +
9 + Orientation( String pKnownAs ) {
10 + mKnownAs = pKnownAs;
11 + }
12 +
13 + public String getKnownAs() {
14 + return mKnownAs;
15 + }
16 +
17 + public String getDescription() {
18 + return mKnownAs + " around the 123 vertice";
19 + }
20 + }