blob: 5667611020a7a062181beed1a5bc8346c84c1938 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2010 Soyatec (http://www.soyatec.com) 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:
* Soyatec - initial API and implementation
*******************************************************************************/
package org.eclipse.xwt.vex.palette.customize.model;
/**
* model class of customize component
*
* @author BOB
*/
public class CustomizeComponent {
private String name = null;
private String scope = null;
private String icon = null;
private String largeIcon = null;
private String tooptip = null;
private String content = null;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getScope() {
return scope;
}
public void setScope(String scope) {
this.scope = scope;
}
public String getIcon() {
return icon;
}
public void setIcon(String icon) {
this.icon = icon;
}
public String getLargeIcon() {
return largeIcon;
}
public void setLargeIcon(String largeIcon) {
this.largeIcon = largeIcon;
}
public String getTooptip() {
return tooptip;
}
public void setTooptip(String tooptip) {
this.tooptip = tooptip;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
}