OW2 Consortium
Search OW2 Mail Archive: 

Advanced Search - Powered by Google


Mail Archive Home | fractal-commits List | January 2007 Index

<--  Date Index  --> <--  Thread Index  -->

CVS update of julia/src/org/objectweb/fractal/juliak/membrane (1 file)


    Date: Tuesday, January 23, 2007 @ 17:34:43
  Author: seintur
    Path: /cvsroot/fractal/julia/src/org/objectweb/fractal/juliak/membrane

 Removed: ControllerDef.java

Removing dead code.


--------------------+
 ControllerDef.java |   67 ---------------------------------------------------
 1 files changed, 67 deletions(-)


Index: julia/src/org/objectweb/fractal/juliak/membrane/ControllerDef.java
diff -u 
julia/src/org/objectweb/fractal/juliak/membrane/ControllerDef.java:1.3 
julia/src/org/objectweb/fractal/juliak/membrane/ControllerDef.java:removed
--- julia/src/org/objectweb/fractal/juliak/membrane/ControllerDef.java:1.3    
  Fri Nov 10 21:06:37 2006
+++ julia/src/org/objectweb/fractal/juliak/membrane/ControllerDef.java  Tue 
Jan 23 17:34:43 2007
@@ -1,67 +0,0 @@
-/***
- * Julia
- * Copyright (C) 2005-2006 INRIA, France Telecom, USTL
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- *
- * Contact: Lionel.Seinturier@xxxxxxx
- *
- * Author: Lionel Seinturier
- */
-
-package org.objectweb.fractal.juliak.membrane;
-
-import org.objectweb.fractal.api.type.InterfaceType;
-
-
-/**
- * Class holding data for defining a controller.
- * 
- * @author Lionel Seinturier <Lionel.Seinturier@xxxxxxx>
- * @since 2.5
- */
-public class ControllerDef {
-    
-    /**
-     * The Fractal interface types implemented by the controller.
-     * 
-     * Most of the time there is only one interface type.
-     * One exception is the factory controller which implements two 
interfaces:
-     * one associated with {@link org.objectweb.fractal.api.Factory} and
-     * one associated with {@link 
org.objectweb.fractal.julia.factory.Template}.
-     */
-    private InterfaceType[] types;
-    
-    /** The class implementating the controller. */
-    private String impl;
-    
-    public ControllerDef( InterfaceType type, String impl ) {
-        this.types = new InterfaceType[]{type};
-        this.impl = impl;
-    }
-    
-    public ControllerDef( InterfaceType[] types, String impl ) {
-        this.types = types;
-        this.impl = impl;
-    }
-    
-    public InterfaceType[] getTypes() {
-        return types;
-    }
-    
-    public String getImpl() {
-        return impl;
-    }
-}



<--  Date Index  --> <--  Thread Index  -->

Reply via email to:

Powered by MHonArc.

Copyright © 2006-2007, OW2 Consortium | contact | webmaster.