
org.jbundle.main.msg.db.MessageStatusField Maven / Gradle / Ivy
/**
* @(#)MessageStatusField.
* Copyright © 2013 jbundle.org. All rights reserved.
* GPL3 Open Source Software License.
*/
package org.jbundle.main.msg.db;
import java.util.*;
import org.jbundle.base.db.*;
import org.jbundle.thin.base.util.*;
import org.jbundle.thin.base.db.*;
import org.jbundle.base.db.event.*;
import org.jbundle.base.db.filter.*;
import org.jbundle.base.field.*;
import org.jbundle.base.field.convert.*;
import org.jbundle.base.field.event.*;
import org.jbundle.base.model.*;
import org.jbundle.base.util.*;
import org.jbundle.model.*;
import org.jbundle.model.db.*;
import org.jbundle.model.screen.*;
/**
* MessageStatusField - .
*/
public class MessageStatusField extends ReferenceField
{
/**
* Default constructor.
*/
public MessageStatusField()
{
super();
}
/**
* Constructor.
* @param record The parent record.
* @param strName The field name.
* @param iDataLength The maximum string length (pass -1 for default).
* @param strDesc The string description (usually pass null, to use the resource file desc).
* @param strDefault The default value (if object, this value is the default value, if string, the string is the default).
*/
public MessageStatusField(Record record, String strName, int iDataLength, String strDesc, Object strDefault)
{
this();
this.init(record, strName, iDataLength, strDesc, strDefault);
}
/**
* Initialize class fields.
*/
public void init(Record record, String strName, int iDataLength, String strDesc, Object strDefault)
{
super.init(record, strName, iDataLength, strDesc, strDefault);
}
/**
* Get (or make) the current record for this reference.
*/
public Record makeReferenceRecord(RecordOwner recordOwner)
{
return new MessageStatus(recordOwner);
}
/**
* Set up the default screen control for this field.
* @param itsLocation Location of this component on screen (ie., GridBagConstraint).
* @param targetScreen Where to place this component (ie., Parent screen or GridBagLayout).
* @param converter The converter to set the screenfield to.
* @param iDisplayFieldDesc Display the label? (optional).
* @param properties Extra properties
* @return Return the component or ScreenField that is created for this field.
*/
public ScreenComponent setupDefaultView(ScreenLoc itsLocation, ComponentParent targetScreen, Convert converter, int iDisplayFieldDesc, Map properties)
{
ScreenComponent screenField = null;
this.makeReferenceRecord(); // Get/make the record that describes the referenced class.
screenField = this.setupIconView(itsLocation, targetScreen, converter, iDisplayFieldDesc, false);
itsLocation = targetScreen.getNextLocation(ScreenConstants.RIGHT_OF_LAST_BUTTON_WITH_GAP, ScreenConstants.DONT_SET_ANCHOR);
iDisplayFieldDesc = ScreenConstants.DONT_DISPLAY_DESC;
screenField = super.setupDefaultView(itsLocation, targetScreen, converter, iDisplayFieldDesc, properties);
return screenField;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy