return panelTextField;
}
case MapManager.Context.TYPE_FILE:
Integer type;
PathField ggPath;
if( c.typeConstraints != null && (c.typeConstraints instanceof Integer) ) {
type = (Integer) c.typeConstraints;
} else {
type = new Integer( PathField.TYPE_INPUTFILE );
}
ggPath = (PathField) mapPathFields.get( type );
if( ggPath == null ) {
ggPath = new PathField( type.intValue(), c.label );
ggPath.addPathListener( this );
// GUIUtil.setDeepFont( ggPath, GraphicsUtil.smallGUIFont );
AbstractWindowHandler.setDeepFont( ggPath );
mapPathFields.put( type, ggPath );
}
ggPath.setPath( (value == null) || !(value instanceof File) ?
new File( "" ) : (File) value );
return ggPath;
default:
if( ggLabel == null ) {