List of usage examples for com.jgoodies.binding.beans Model subclass-usage
From source file ambit2.base.data.AmbitUser.java
/** * Contains all information about an AMBIT database user. * @author Nina Jeliazkova <br> * <b>Modified</b> 2005-4-7 */ public class AmbitUser extends Model {
From source file ambit2.base.data.ClassHolder.java
/** * A place holder for class name and description, in order to allow display of light list of objects, instantiated on demand only. * @author nina * */ public class ClassHolder extends Model {
From source file ambit2.base.data.Property.java
public class Property extends Model implements Serializable, Comparable<Property> { public void setName(String name) { this.name = name == null ? null : name.length() >= 256 ? name.substring(0, 255) : name; } /**
From source file com.github.boogey.progressview.model.AbstractCancelableProgress.java
/** * This abstract class contains the basis logic for an {@link ICancelableProgress}. * * @author Karsten Schulz <a href="mailto:lennylinux.ks@googlmail.com">(lennylinux.ks@googlmail.com)</a> */ public abstract class AbstractCancelableProgress extends Model implements ICancelableProgress {
From source file com.github.boogey.progressview.model.AbstractProgressModel.java
/**
* This abstract class extends from {@link Model} and implements the mutable interface {@link IProgressModel}. This
* class is the basic implementation for the swing listener model. The inheritance from the {@link Model} class allowed
* to add and remove {@link PropertyChangeListener} and protected fire-method to notify the observers.
*
* @author Karsten Schulz <a href="mailto:lennylinux.ks@googlmail.com">(lennylinux.ks@googlmail.com)</a>
From source file com.mrfeinberg.proxyprefs.ProxyPreferences.java
public class ProxyPreferences extends Model { public static final String PROPERTYNAME_USE_PROXY = "useProxy"; public static final String PROPERTYNAME_PROXY_HOST = "proxyHost"; public static final String PROPERTYNAME_PROXY_PORT = "proxyPort"; private final Preferences prefs;
From source file com.salas.bb.domain.FeedMetaDataHolder.java
/** * Holder of meta information for a blog/feed. */ public final class FeedMetaDataHolder extends Model { public static final String PROP_XML_URL = "xmlURL"; public static final String PROP_HTML_URL = "htmlURL";
From source file com.salas.bb.domain.prefs.StarzPreferences.java
/** * Preferences Object for BlogBridge. */ public final class StarzPreferences extends Model { // Keys and names
From source file com.salas.bb.domain.prefs.UserPreferences.java
/** * Preferences Object for BlogBridge. */ public final class UserPreferences extends Model { /** Key for <code>markReadWhenChangingChannels</code> preference. */ public static final String KEY_MARK_READ_WHEN_CHANGING_CHANNELS = "state.markReadWhenChangingChannels";
From source file com.salas.bb.remixfeeds.prefs.TargetBlog.java
/** * Single blog preferences. */ public class TargetBlog extends Model { private static final MessageFormat FMT = new MessageFormat("blog.{0}.{1}");