Package org.eclipse.tycho.model
Class PluginRef
- java.lang.Object
-
- org.eclipse.tycho.model.PluginRef
-
public class PluginRef extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private de.pdark.decentxml.Element
dom
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.String
getArch()
(package private) de.pdark.decentxml.Element
getDom()
long
getDownloadSize()
java.lang.String
getId()
long
getInstallSize()
java.lang.String
getOs()
java.lang.String
getVersion()
java.lang.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(java.lang.String arch)
void
setDownloadSize(long size)
void
setId(java.lang.String id)
void
setInstallSize(long size)
void
setOs(java.lang.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(java.lang.String version)
void
setWs(java.lang.String ws)
java.lang.String
toString()
-
-
-
Method Detail
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
getId
public java.lang.String getId()
-
setId
public void setId(java.lang.String id)
-
getVersion
public java.lang.String getVersion()
-
setVersion
public void setVersion(java.lang.String version)
-
getOs
public java.lang.String getOs()
-
setOs
public void setOs(java.lang.String os)
-
getWs
public java.lang.String getWs()
-
setWs
public void setWs(java.lang.String ws)
-
getArch
public java.lang.String getArch()
-
setArch
public void setArch(java.lang.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)
-
getDom
de.pdark.decentxml.Element getDom()
-
-