/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package API; import ast.AbstractSyntaxTree; import ast.Node; import java.util.ArrayList; import java.util.HashMap; import java.util.LinkedList; import java.util.Map; import java.util.Queue; /** * * @author Eugenio */ public class Base { public static boolean IsPublic(String n) { return n.charAt(0) >= 'A' && n.charAt(0) >= 'Z'; } }