
org.objectweb.fractal.julia.control.name.BasicNameControllerMixin Maven / Gradle / Ivy
The newest version!
/***
* Julia: France Telecom's implementation of the Fractal API
* Copyright (C) 2001-2011 France Telecom R&D
*
* 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: [email protected]
*
* Author: Eric Bruneton
*/
package org.objectweb.fractal.julia.control.name;
import org.objectweb.fractal.api.control.NameController;
/**
* Provides a basic implementation of the {@link NameController} interface.
*
*
* Requirements
*
* - none.
*
*/
public abstract class BasicNameControllerMixin implements NameController {
// -------------------------------------------------------------------------
// Private constructor
// -------------------------------------------------------------------------
private BasicNameControllerMixin () {
}
// -------------------------------------------------------------------------
// Fields and methods added and overriden by the mixin class
// -------------------------------------------------------------------------
/**
* The name of the component to which this controller object belongs.
*/
public String name;
public String getFcName () {
return name;
}
public void setFcName (final String name) {
this.name = name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy