/[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.1 by gnu_andrew, Wed May 4 07:31:55 2005 UTC revision 1.2 by gnu_andrew, Wed May 4 22:14:05 2005 UTC
# Line 21  Line 21 
21    
22  package nongnu.cashews.language.process;  package nongnu.cashews.language.process;
23    
24    import java.net.URI;
25    import java.net.URISyntaxException;
26    
27  import nongnu.cashews.language.grounding.Grounding;  import nongnu.cashews.language.grounding.Grounding;
28    
29  /**  /**
# Line 43  public class AtomicProcess Line 46  public class AtomicProcess
46     */     */
47    private Grounding grounding;    private Grounding grounding;
48    
49      /**
50       * Constructs a new <code>AtomicProcess</code> with the specified
51       * name.
52       *
53       * @param name the name for this atomic process.
54       * @throws URISyntaxException if the supplied name is not a valid URI.
55       */
56      public AtomicProcess(String name)
57        throws URISyntaxException
58      {
59        super(name);
60      }
61    
62      /**
63       * Constructs a new <code>AtomicProcess</code> with the specified
64       * name.
65       *
66       * @param name the name for this atomic process.
67       */
68      public AtomicProcess(URI name)
69      {
70        super(name);
71      }
72    
73  }  }
74    

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

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