unused class removed
[fedora-idea.git] / plugins / images / src / org / intellij / images / options / Options.java
blobc6f61f08c699baa52b1c3930d25e025f7ad287a2
1 /*
2 * Copyright 2004-2005 Alexey Efimov
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package org.intellij.images.options;
18 import java.beans.PropertyChangeListener;
20 /**
21 * Options for plugin.
23 * @author <a href="mailto:aefimov.box@gmail.com">Alexey Efimov</a>
25 public interface Options extends Cloneable {
26 EditorOptions getEditorOptions();
28 ExternalEditorOptions getExternalEditorOptions();
30 /**
31 * Option injection from other options.
33 * @param options Other options
35 void inject(Options options);
37 void addPropertyChangeListener(PropertyChangeListener listener);
39 void addPropertyChangeListener(String propertyName, PropertyChangeListener listener);
41 void removePropertyChangeListener(PropertyChangeListener listener);
43 void removePropertyChangeListener(String propertyName, PropertyChangeListener listener);
45 /**
46 * Set option by string representation.
48 * @param name Name of option
49 * @param value Value
50 * @return <code>true</code> if option is matched and setted.
52 boolean setOption(String name, Object value);