Skip to content
Snippets Groups Projects
Select Git revision
  • abbc330ca57e3e329e3ec4ec83c1fb689e0a5a55
  • master default protected
  • sdas
3 results

GameOfLife.class

Blame
  • Forked from NASR Alexis / Programmation2
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    C3aInstFBegin.java 485 B
    package c3a;
    import ts.*;
    
    public class C3aInstFBegin extends C3aInst{
        public TsItemFct val;
        public C3aInstFBegin(TsItemFct val, String comment){
    	this.val = val;
    	this.comment = comment;
        }
    
        public String toString(){
    	//	String s = "";
    	//	if(this.label != null)
    	//	    s = s + this.label;
    	return this.val.getIdentif() + "\tfbegin\t#" + this.comment;
    	//	return s;
        }
    
        public <T> T accept(C3aVisitor <T> visitor) {
            return visitor.visit(this);
        }
    }