blob: 049ad6eb37cacbab90afde67ba15c10813f9ed17 [file] [log] [blame]
/*
* Copyright 2000-2009 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.intellij.openapi.extensions.impl;
import com.intellij.openapi.extensions.PluginAware;
import com.intellij.openapi.extensions.PluginDescriptor;
import com.intellij.openapi.extensions.PluginId;
import com.intellij.util.xmlb.annotations.Tag;
import java.util.ArrayList;
import java.util.Collection;
/**
* @author Alexander Kireyev
*/
public class XMLTestBean implements PluginAware {
private boolean otherProperty;
private int prop1;
private Object prop2;
private Collection<String> collectionProperty = new ArrayList<String>();
private PluginId pluginId;
public XMLTestBean() {
}
public XMLTestBean(Collection aCollectionProperty, boolean aOtherProperty, int aProp1) {
collectionProperty = aCollectionProperty;
otherProperty = aOtherProperty;
prop1 = aProp1;
}
public boolean isOtherProperty() {
return otherProperty;
}
public void setOtherProperty(boolean otherProperty) {
this.otherProperty = otherProperty;
}
@Tag("prop1")
public int getProp1() {
return prop1;
}
public void setProp1(int prop1) {
this.prop1 = prop1;
}
public Object getProp2() {
return prop2;
}
public void setProp2(Object prop2) {
this.prop2 = prop2;
}
public Collection<String> getCollectionProperty() {
return collectionProperty;
}
public void setCollectionProperty(Collection<String> collectionProperty) {
this.collectionProperty = collectionProperty;
}
@Override
public void setPluginDescriptor(PluginDescriptor pluginDescriptor) {
pluginId = pluginDescriptor.getPluginId();
}
public PluginId getPluginId() {
return pluginId;
}
}