Package org.eclipse.tycho.model
Class PluginRef
- java.lang.Object
-
- org.eclipse.tycho.model.PluginRef
-
public class PluginRef extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getArch()
long
getDownloadSize()
String
getId()
long
getInstallSize()
String
getOs()
String
getVersion()
String
getWs()
int
hashCode()
boolean
isUnpack()
Deprecated.The installation format (packed/unpacked) shall be specified through the bundle's Eclipse-BundleShape manifest header.void
setArch(String arch)
void
setDownloadSize(long size)
void
setId(String id)
void
setInstallSize(long size)
void
setOs(String os)
void
setUnpack(boolean unpack)
Deprecated.The installation format (packed/unpacked) shall be specified through the bundle's Eclipse-BundleShape manifest header.void
setVersion(String version)
void
setWs(String ws)
String
toString()
-
-
-
Constructor Detail
-
PluginRef
public PluginRef(de.pdark.decentxml.Element dom)
-
PluginRef
public PluginRef(String name)
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getVersion
public String getVersion()
-
setVersion
public void setVersion(String version)
-
getOs
public String getOs()
-
setOs
public void setOs(String os)
-
getWs
public String getWs()
-
setWs
public void setWs(String ws)
-
getArch
public String getArch()
-
setArch
public void setArch(String arch)
-
isUnpack
@Deprecated public boolean isUnpack()
Deprecated.The installation format (packed/unpacked) shall be specified through the bundle's Eclipse-BundleShape manifest header. The feature.xml's unpack attribute may not be supported in a future version of Tycho.
-
setUnpack
@Deprecated public void setUnpack(boolean unpack)
Deprecated.The installation format (packed/unpacked) shall be specified through the bundle's Eclipse-BundleShape manifest header. The feature.xml's unpack attribute may not be supported in a future version of Tycho.
-
getDownloadSize
public long getDownloadSize()
-
setDownloadSize
public void setDownloadSize(long size)
-
getInstallSize
public long getInstallSize()
-
setInstallSize
public void setInstallSize(long size)
-
-