forked from Coded/SIPRP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
848 B
39 lines
848 B
/*
|
|
* FichaAptidaoEditorManagerFactory.java
|
|
*
|
|
* Created on 30 de Março de 2004, 20:48
|
|
*/
|
|
|
|
package siprp.ficha;
|
|
|
|
import com.evolute.utils.editormanager.*;
|
|
/**
|
|
*
|
|
* @author fpalma
|
|
*/
|
|
public class FichaAptidaoEditorManagerFactory
|
|
implements EditorManagerFactory
|
|
{
|
|
|
|
/** Creates a new instance of FichaAptidaoEditorManagerFactory */
|
|
public FichaAptidaoEditorManagerFactory()
|
|
{
|
|
}
|
|
|
|
public EditorManagerInterface createEditorManager(Editor ed, int i)
|
|
{
|
|
return new FichaAptidaoEditorManager( ed, i );
|
|
}
|
|
|
|
public EditorManagerInterface createEditorManager(Editor ed, int i, EditorManagerInterface[] subMan)
|
|
{
|
|
return new FichaAptidaoEditorManager( ed, i, subMan );
|
|
}
|
|
|
|
public EditorManagerInterface createEditorManager(Editor ed, int i, EditorManagerInterface subMan)
|
|
{
|
|
return new FichaAptidaoEditorManager( ed, i, subMan );
|
|
}
|
|
|
|
}
|