Open scope of several data fields to be able to extend CommandGroup

Change-Id: I81ac59dd45aa50ed3d8dc4fdd1d5807899af546b
This commit is contained in:
Joe Ross
2014-09-20 16:07:18 -07:00
parent b59f4141c4
commit 47961c8b13

View File

@@ -34,11 +34,11 @@ import java.util.Vector;
public class CommandGroup extends Command {
/** The commands in this group (stored in entries) */
private Vector m_commands = new Vector();
Vector m_commands = new Vector();
/** The active children in this group (stored in entries) */
Vector m_children = new Vector();
/** The current command, -1 signifies that none have been run */
private int m_currentCommandIndex = -1;
int m_currentCommandIndex = -1;
/**
* Creates a new {@link CommandGroup CommandGroup}.