more shit en masse
This commit is contained in:
parent
172f86193d
commit
5bedad9a0f
9 changed files with 161 additions and 74 deletions
24
src/pkg/deepCurse/nopalmo/manager/CommandBlob.java
Normal file
24
src/pkg/deepCurse/nopalmo/manager/CommandBlob.java
Normal file
|
@ -0,0 +1,24 @@
|
|||
package pkg.deepCurse.nopalmo.manager;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class CommandBlob {
|
||||
|
||||
private String modifiedRaw = null;
|
||||
private String modified = null;
|
||||
|
||||
private ArrayList<String> args = null;
|
||||
|
||||
public String getModifiedMessageContents() {
|
||||
return this.modified;
|
||||
}
|
||||
|
||||
public String getModifiedRawMessageContents() {
|
||||
return this.modifiedRaw;
|
||||
}
|
||||
|
||||
public ArrayList<String> getArgs() {
|
||||
return args;
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue