Skip to content
Snippets Groups Projects
Select Git revision
2 results Searching

setup.py

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