/* * Copyright (c) 2004-2011 Marco Maccaferri and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Marco Maccaferri - initial API and implementation */ package org.eclipsetrader.core.instruments; public class UserProperty implements IUserProperty { private String name; private boolean required; private String defaultValue; public UserProperty() { } public UserProperty(String name, boolean required, String defaultValue) { this.name = name; this.required = required; this.defaultValue = defaultValue; } /* (non-Javadoc) * @see org.eclipsetrader.core.model.IUserProperty#getName() */ @Override public String getName() { return name; } public void setName(String name) { this.name = name; } /* (non-Javadoc) * @see org.eclipsetrader.core.model.IUserProperty#isRequired() */ @Override public boolean isRequired() { return required; } public void setRequired(boolean required) { this.required = required; } /* (non-Javadoc) * @see org.eclipsetrader.core.model.IUserProperty#getDefaultValue() */ @Override public String getDefaultValue() { return defaultValue; } public void setDefaultValue(String defaultValue) { this.defaultValue = defaultValue; } /* (non-Javadoc) * @see java.lang.Object#equals(java.lang.Object) */ @Override public boolean equals(Object obj) { if (!(obj instanceof IUserProperty)) { return false; } return name.equals(((IUserProperty) obj).getName()); } /* (non-Javadoc) * @see java.lang.Object#hashCode() */ @Override public int hashCode() { return name.hashCode(); } /* (non-Javadoc) * @see java.lang.Object#toString() */ @Override public String toString() { return name; } }