Changeset 465


Ignore:
Timestamp:
05/23/13 19:57:13 (11 years ago)
Author:
davidb
Message:

Status enum made public. Some tidying up of text/spelling in comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/actions/Simple.java

    r442 r465  
    8888        private static final String EXIT_TEXT = "exitall";
    8989
    90         private static enum Status {
     90        public static enum Status {
    9191                Exit, OK, Break, Continue, Return, TrueIf, FalseIf;
    9292        };
     
    441441
    442442        /**
    443          * Runs a simple code begining on a frame linked to by the specified item
    444          * parametre.
     443         * Runs a simple code beginning on a frame linked to by the specified item
     444         * parameter.
    445445         *
    446446         * @param current
     
    449449        public static Status RunFrameAndReportError(Item current, Context context)
    450450                        throws Exception {
     451               
     452               
    451453                // the item must link to a frame
    452454                if (current.getLink() == null) {
     
    19771979                        else if (result) {
    19781980                                Status status;
    1979                                 // check if it is a one line if statment
     1981                                // check if it is a one line if statement
    19801982                                if (tokens.length > parametres + 1) {
    19811983                                        // put together the one line statement
Note: See TracChangeset for help on using the changeset viewer.