📄 pluginfragmentimpl.java
字号:
/*****************************************************************************
* Java Plug-in Framework (JPF)
* Copyright (C) 2004-2007 Dmitry Olshansky
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*****************************************************************************/
package org.java.plugin.registry.xml;
import java.net.URL;
import org.java.plugin.registry.Documentation;
import org.java.plugin.registry.Identity;
import org.java.plugin.registry.ManifestProcessingException;
import org.java.plugin.registry.PluginDescriptor;
import org.java.plugin.registry.PluginFragment;
import org.java.plugin.registry.PluginRegistry;
import org.java.plugin.registry.Version;
/**
* @version $Id: PluginFragmentImpl.java,v 1.6 2007/01/05 13:32:08 ddimon Exp $
*/
class PluginFragmentImpl extends IdentityImpl implements PluginFragment {
private final PluginRegistry registry;
private final URL location;
private final ModelPluginFragment model;
private Documentation doc;
PluginFragmentImpl(final PluginRegistry aRegistry,
final ModelPluginFragment aModel, final URL aLocation)
throws ManifestProcessingException {
super(aModel.getId());
registry = aRegistry;
model = aModel;
location = aLocation;
if (model.getVendor() == null) {
model.setVendor(""); //$NON-NLS-1$
}
if ((model.getPluginId() == null)
|| (model.getPluginId().trim().length() == 0)) {
throw new ManifestProcessingException(
PluginRegistryImpl.PACKAGE_NAME,
"fragmentPliginIdIsBlank", getId()); //$NON-NLS-1$
}
if (getId().equals(model.getPluginId())) {
throw new ManifestProcessingException(
PluginRegistryImpl.PACKAGE_NAME,
"invalidFragmentPluginId", getId()); //$NON-NLS-1$
}
if ((model.getDocsPath() == null)
|| (model.getDocsPath().trim().length() == 0)) {
model.setDocsPath("docs"); //$NON-NLS-1$
}
if (model.getDocumentation() != null) {
doc = new DocumentationImpl(this, model.getDocumentation());
}
if (log.isDebugEnabled()) {
log.debug("object instantiated: " + this); //$NON-NLS-1$
}
}
ModelPluginFragment getModel() {
return model;
}
/**
* @see org.java.plugin.registry.UniqueIdentity#getUniqueId()
*/
public String getUniqueId() {
return registry.makeUniqueId(getId(), model.getVersion());
}
/**
* @see org.java.plugin.registry.PluginFragment#getVendor()
*/
public String getVendor() {
return model.getVendor();
}
/**
* @see org.java.plugin.registry.PluginFragment#getVersion()
*/
public Version getVersion() {
return model.getVersion();
}
/**
* @see org.java.plugin.registry.PluginFragment#getPluginId()
*/
public String getPluginId() {
return model.getPluginId();
}
/**
* @see org.java.plugin.registry.PluginFragment#getPluginVersion()
*/
public Version getPluginVersion() {
return model.getPluginVersion();
}
/**
* @see org.java.plugin.registry.PluginFragment#getRegistry()
*/
public PluginRegistry getRegistry() {
return registry;
}
/**
* @see org.java.plugin.registry.PluginFragment#matches(
* org.java.plugin.registry.PluginDescriptor)
*/
public boolean matches(final PluginDescriptor descr) {
return PluginPrerequisiteImpl.matches(model.getPluginVersion(),
descr.getVersion(), model.getMatch());
}
/**
* @see org.java.plugin.registry.Documentable#getDocumentation()
*/
public Documentation getDocumentation() {
return doc;
}
/**
* @see org.java.plugin.registry.PluginFragment#getDocsPath()
*/
public String getDocsPath() {
return model.getDocsPath();
}
/**
* @see org.java.plugin.registry.PluginFragment#getLocation()
*/
public URL getLocation() {
return location;
}
/**
* @see org.java.plugin.registry.xml.IdentityImpl#isEqualTo(
* org.java.plugin.registry.Identity)
*/
protected boolean isEqualTo(final Identity idt) {
if (!(idt instanceof PluginFragmentImpl)) {
return false;
}
PluginFragmentImpl other = (PluginFragmentImpl) idt;
return getUniqueId().equals(other.getUniqueId())
&& getLocation().toExternalForm().equals(
other.getLocation().toExternalForm());
}
/**
* @see java.lang.Object#toString()
*/
public String toString() {
return "{PluginFragment: uid=" + getUniqueId() + "}"; //$NON-NLS-1$ //$NON-NLS-2$
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -