Skip to content
Snippets Groups Projects
Select Git revision
  • 68453c6a90b5bd93c03ecc6e453cfa94892dcb64
  • main default protected
  • clean
3 results

A.java

Blame
  • A.java 304 B
    public class A{
        private final String LABEL = "42";
        private String label;
        
        //construtor    
        public A(){
            this.label = this.LABEL;
        }
    
        public A(String label){
            this.label = label;
        }
    
        //methods
        public String toString(){
            return this.label;
        }
    }