Subversion Repository Public Repository

litesoft

Diff Revisions 949 vs 950 for /trunk/Java/GWT/OldClient/src/org/litesoft/GWT/client/commands/MoveNEWScommands.java

Diff revisions: vs.
  @@ -1,32 +1,32 @@
1 - // This Source Code is in the Public Domain per: http://unlicense.org
2 - package org.litesoft.GWT.client.commands;
3 -
4 - import org.litesoft.commonfoundation.typeutils.*;
5 -
6 - public class MoveNEWScommands {
7 - private CssBackgroundCommand mMoveNorth, mMoveEast, mMoveWest, mMoveSouth;
8 -
9 - public MoveNEWScommands( CssBackgroundCommand pMoveNorth, CssBackgroundCommand pMoveEast,
10 - CssBackgroundCommand pMoveWest, CssBackgroundCommand pMoveSouth ) {
11 - Objects.assertNotNull( "MoveNorth", mMoveNorth = pMoveNorth );
12 - Objects.assertNotNull( "MoveEast", mMoveEast = pMoveEast );
13 - Objects.assertNotNull( "MoveWest", mMoveWest = pMoveWest );
14 - Objects.assertNotNull( "MoveSouth", mMoveSouth = pMoveSouth );
15 - }
16 -
17 - public CssBackgroundCommand getMoveNorth() {
18 - return mMoveNorth;
19 - }
20 -
21 - public CssBackgroundCommand getMoveEast() {
22 - return mMoveEast;
23 - }
24 -
25 - public CssBackgroundCommand getMoveWest() {
26 - return mMoveWest;
27 - }
28 -
29 - public CssBackgroundCommand getMoveSouth() {
30 - return mMoveSouth;
31 - }
32 - }
1 + // This Source Code is in the Public Domain per: http://unlicense.org
2 + package org.litesoft.GWT.client.commands;
3 +
4 + import org.litesoft.commonfoundation.base.*;
5 +
6 + public class MoveNEWScommands {
7 + private CssBackgroundCommand mMoveNorth, mMoveEast, mMoveWest, mMoveSouth;
8 +
9 + public MoveNEWScommands( CssBackgroundCommand pMoveNorth, CssBackgroundCommand pMoveEast,
10 + CssBackgroundCommand pMoveWest, CssBackgroundCommand pMoveSouth ) {
11 + Confirm.isNotNull( "MoveNorth", mMoveNorth = pMoveNorth );
12 + Confirm.isNotNull( "MoveEast", mMoveEast = pMoveEast );
13 + Confirm.isNotNull( "MoveWest", mMoveWest = pMoveWest );
14 + Confirm.isNotNull( "MoveSouth", mMoveSouth = pMoveSouth );
15 + }
16 +
17 + public CssBackgroundCommand getMoveNorth() {
18 + return mMoveNorth;
19 + }
20 +
21 + public CssBackgroundCommand getMoveEast() {
22 + return mMoveEast;
23 + }
24 +
25 + public CssBackgroundCommand getMoveWest() {
26 + return mMoveWest;
27 + }
28 +
29 + public CssBackgroundCommand getMoveSouth() {
30 + return mMoveSouth;
31 + }
32 + }