Package edu.mit.simile.backstage.model

Examples of edu.mit.simile.backstage.model.Context


abstract public class Component {
    protected Context _context;
    protected String _id;
   
    protected Component(Context context, String id) {
        _context = new Context(context);
        _id = id;
    }
View Full Code Here

TOP

Related Classes of edu.mit.simile.backstage.model.Context

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.