Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.eclipse.pde.core.build
Interface IBuild  view IBuild download IBuild.java

All Superinterfaces:
org.eclipse.pde.core.IWritable

public interface IBuild
extends org.eclipse.pde.core.IWritable

The top-level model object of the model that is created from "build.properties" file.


Method Summary
 void add(IBuildEntry entry)
          Adds a new build entry.
 IBuildEntry[] getBuildEntries()
          Returns all the build entries in this object.
 IBuildEntry getEntry(java.lang.String name)
          Returns the build entry with the specified name.
 void remove(IBuildEntry entry)
          Removes a build entry.
 
Methods inherited from interface org.eclipse.pde.core.IWritable
write
 

Method Detail

add

public void add(IBuildEntry entry)
         throws org.eclipse.core.runtime.CoreException
Adds a new build entry. This method can throw a CoreException if the model is not editable.


getBuildEntries

public IBuildEntry[] getBuildEntries()
Returns all the build entries in this object.


getEntry

public IBuildEntry getEntry(java.lang.String name)
Returns the build entry with the specified name.


remove

public void remove(IBuildEntry entry)
            throws org.eclipse.core.runtime.CoreException
Removes a build entry. This method can throw a CoreException if the model is not editable.