Ignore:
Timestamp:
01/09/13 00:09:10 (11 years ago)
Author:
psniegowski
Message:

Add f0 parsing and f0->Model transformation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • java/main/src/main/java/com/framsticks/core/Entity.java

    r77 r78  
    44import com.framsticks.util.Thread;
    55import org.apache.log4j.Logger;
    6 
    7 import java.util.HashSet;
    8 import java.util.Set;
    96
    107/**
     
    3734    }
    3835
    39     public final void configurePublic() {
     36    public final void configurePublic() throws Exception {
    4037        configure();
    4138    }
    4239
    43     protected void configure() {
     40    protected void configure() throws Exception {
    4441
    4542    }
     
    5855    }
    5956
     57        public final void done() {
     58                LOGGER.info("stopping entity");
     59                if (owner != null) {
     60                        owner.onDone();
     61                }
     62        }
     63
    6064
    6165}
Note: See TracChangeset for help on using the changeset viewer.