Advertisement
KillianMills

STC.java

Dec 12th, 2015
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.45 KB | None | 0 0
  1. // Name:STC.java
  2. // Author: David Sinclair      Date: 29 Aug 2012
  3. //
  4. // Very basic Symbol Table implementation
  5. //
  6.  
  7. import java.util.*;
  8.  
  9. public class STC extends Object
  10. {
  11.     String type;
  12.     String value;
  13.     String declared;
  14.     //String scope;
  15.  
  16.     public STC(String ivalue, String itype, String ideclared)//, String iScope)
  17.     {
  18.         value = ivalue;
  19.         type = itype;
  20.         declared = ideclared;
  21.         //scope = iScope;
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement