Skip to content
Snippets Groups Projects
Select Git revision
  • f356058422c3898f7593fc94c4c470e27f3ccec9
  • main default protected
2 results

utils.js

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;
        }
    }