/[cashew-s-editor]/cashews/src/nongnu/cashews/language/process/AtomicProcess.java
ViewVC logotype

Diff of /cashews/src/nongnu/cashews/language/process/AtomicProcess.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.4 by gnu_andrew, Sun May 8 12:03:41 2005 UTC revision 1.5 by gnu_andrew, Wed May 11 07:16:05 2005 UTC
# Line 91  public class AtomicProcess Line 91  public class AtomicProcess
91      this.grounding = grounding;      this.grounding = grounding;
92    }    }
93    
94      /**
95       * Retrieves the grounding of this atomic process.
96       *
97       * @return the atomic process grounding.
98       */
99      public Grounding getGrounding()
100      {
101        return grounding;
102      }
103    
104      /**
105       * Returns a <code>String</code> representation of this atomic process.
106       *
107       * @return a textual representation.
108       */
109      public String toString()
110      {
111        String superString = super.toString();
112        return superString.substring(0, superString.length() - 1) +
113          ", grounding=" +
114          grounding +
115          "]";
116      }
117    
118  }  }
119    

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26