Base.java 540 B

12345678910111213141516171819202122232425
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package API;
  7. import ast.AbstractSyntaxTree;
  8. import ast.Node;
  9. import java.util.ArrayList;
  10. import java.util.HashMap;
  11. import java.util.LinkedList;
  12. import java.util.Map;
  13. import java.util.Queue;
  14. /**
  15. *
  16. * @author Eugenio
  17. */
  18. public class Base {
  19. public static boolean IsPublic(String n) {
  20. return n.charAt(0) >= 'A' && n.charAt(0) >= 'Z';
  21. }
  22. }