本文整理汇总了Java中org.eclipse.core.resources.IProjectDescription.getBuildSpec方法的典型用法代码示例。如果您正苦于以下问题:Java IProjectDescription.getBuildSpec方法的具体用法?Java IProjectDescription.getBuildSpec怎么用?Java IProjectDescription.getBuildSpec使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.core.resources.IProjectDescription
的用法示例。
在下文中一共展示了IProjectDescription.getBuildSpec方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: configure
import org.eclipse.core.resources.IProjectDescription; //导入方法依赖的package包/类
@Override
public void configure() throws CoreException {
IProjectDescription desc = project.getDescription();
ICommand[] commands = desc.getBuildSpec();
for (int i = 0; i < commands.length; ++i) {
if (commands[i].getBuilderName().equals(MinifyBuilder.BUILDER_ID)) {
return;
}
}
ICommand[] newCommands = new ICommand[commands.length + 1];
System.arraycopy(commands, 0, newCommands, 0, commands.length);
ICommand command = desc.newCommand();
command.setBuilderName(MinifyBuilder.BUILDER_ID);
newCommands[newCommands.length - 1] = command;
desc.setBuildSpec(newCommands);
project.setDescription(desc, null);
}
示例2: deconfigure
import org.eclipse.core.resources.IProjectDescription; //导入方法依赖的package包/类
@Override
public void deconfigure() throws CoreException {
IProjectDescription description = getProject().getDescription();
ICommand[] commands = description.getBuildSpec();
for (int i = 0; i < commands.length; ++i) {
if (commands[i].getBuilderName().equals(MinifyBuilder.BUILDER_ID)) {
ICommand[] newCommands = new ICommand[commands.length - 1];
System.arraycopy(commands, 0, newCommands, 0, i);
System.arraycopy(commands, i + 1, newCommands, i,
commands.length - i - 1);
description.setBuildSpec(newCommands);
project.setDescription(description, null);
return;
}
}
}
示例3: configure
import org.eclipse.core.resources.IProjectDescription; //导入方法依赖的package包/类
public void configure() throws CoreException {
IProjectDescription desc = project.getDescription();
ICommand[] commands = desc.getBuildSpec();
for (int i = 0; i < commands.length; ++i) {
if (commands[i].getBuilderName().equals(GemocSequentialLanguageBuilder.BUILDER_ID)) {
return;
}
}
ICommand[] newCommands = new ICommand[commands.length + 1];
System.arraycopy(commands, 0, newCommands, 0, commands.length);
ICommand command = desc.newCommand();
command.setBuilderName(GemocSequentialLanguageBuilder.BUILDER_ID);
newCommands[newCommands.length - 1] = command;
desc.setBuildSpec(newCommands);
project.setDescription(desc, null);
}
示例4: removeBuilderFromProject
import org.eclipse.core.resources.IProjectDescription; //导入方法依赖的package包/类
public static void removeBuilderFromProject(IProjectDescription description)
{
// Look for builder.
int index = -1;
ICommand[] cmds = description.getBuildSpec();
for( int j = 0; j < cmds.length; j++ )
{
if( cmds[j].getBuilderName().equals(BUILDER_ID) )
{
index = j;
break;
}
}
if( index == -1 )
return;
// Remove builder from project.
List<ICommand> newCmds = new ArrayList<ICommand>();
newCmds.addAll(Arrays.asList(cmds));
newCmds.remove(index);
description.setBuildSpec(newCmds.toArray(new ICommand[newCmds.size()]));
}
示例5: setBuilder
import org.eclipse.core.resources.IProjectDescription; //导入方法依赖的package包/类
/**
* Set the GW4E builder
*
* @param project
* @param monitor
* @throws CoreException
*/
public static void setBuilder(IProject project, IProgressMonitor monitor) throws CoreException {
IProjectDescription desc = project.getDescription();
ICommand[] commands = desc.getBuildSpec();
for (int i = 0; i < commands.length; ++i) {
if (commands[i].getBuilderName().equals(GW4EBuilder.BUILDER_ID)) {
return;
}
}
ICommand[] newCommands = new ICommand[commands.length + 1];
System.arraycopy(commands, 0, newCommands, 0, commands.length);
ICommand command = desc.newCommand();
command.setBuilderName(GW4EBuilder.BUILDER_ID);
newCommands[newCommands.length - 1] = command;
desc.setBuildSpec(newCommands);
project.setDescription(desc, null);
}
示例6: unsetBuilder
import org.eclipse.core.resources.IProjectDescription; //导入方法依赖的package包/类
/**
* Remove the GW4E builder
*
* @param project
* @param monitor
* @throws CoreException
*/
public static void unsetBuilder(IProject project, IProgressMonitor monitor) throws CoreException {
IProjectDescription description = project.getDescription();
ICommand[] commands = description.getBuildSpec();
for (int i = 0; i < commands.length; ++i) {
if (commands[i].getBuilderName().equals(GW4EBuilder.BUILDER_ID)) {
ICommand[] newCommands = new ICommand[commands.length - 1];
System.arraycopy(commands, 0, newCommands, 0, i);
System.arraycopy(commands, i + 1, newCommands, i, commands.length - i - 1);
description.setBuildSpec(newCommands);
project.setDescription(description, null);
GW4EBuilder.removeProjectProblemMarker(project, monitor);
return;
}
}
}
示例7: testUnsetBuilder
import org.eclipse.core.resources.IProjectDescription; //导入方法依赖的package包/类
@Test
public void testUnsetBuilder() throws Exception {
IJavaProject p = ProjectHelper.getProject(PROJECT_NAME);
ClasspathManager.setBuilder(p.getProject(), null);
IProjectDescription desc = p.getProject().getDescription();
ICommand[] commands = desc.getBuildSpec();
boolean found = false;
for (int i = 0; i < commands.length; ++i) {
if (commands[i].getBuilderName().equals(GW4EBuilder.BUILDER_ID)) {
found=true;
}
}
assertTrue(found);
ClasspathManager.unsetBuilder(p.getProject(), null);
desc = p.getProject().getDescription();
commands = desc.getBuildSpec();
found = false;
for (int i = 0; i < commands.length; ++i) {
if (commands[i].getBuilderName().equals(GW4EBuilder.BUILDER_ID)) {
found=true;
}
}
assertFalse(found);
}
示例8: removeBuilder
import org.eclipse.core.resources.IProjectDescription; //导入方法依赖的package包/类
public static void removeBuilder(final IProject project) {
try {
final IProjectDescription description = project
.getDescription();
final List<ICommand> commands = new ArrayList<ICommand>();
commands.addAll(Arrays.asList(description.getBuildSpec()));
for (final ICommand buildSpec : description.getBuildSpec()) {
if (BUILDER.ID.equals(buildSpec.getBuilderName())) {
// remove builder
commands.remove(buildSpec);
}
}
description.setBuildSpec(commands.toArray(new ICommand[commands.size()]));
project.setDescription(description, null);
} catch (final CoreException e) {
Log.log(Log.LOG_ERROR, "Cannot remove builder", e); //$NON-NLS-1$
}
}
示例9: addBuilder
import org.eclipse.core.resources.IProjectDescription; //导入方法依赖的package包/类
protected void addBuilder(String builderId) throws CoreException
{
IProjectDescription desc = _project.getDescription();
ICommand[] commands = desc.getBuildSpec();
for (int i = 0; i < commands.length; ++i) {
if (commands[i].getBuilderName().equals(builderId)) {
return;
}
}
ICommand[] newCommands = new ICommand[commands.length + 1];
System.arraycopy(commands, 0, newCommands, 0, commands.length);
ICommand command = desc.newCommand();
command.setBuilderName(builderId);
newCommands[newCommands.length - 1] = command;
desc.setBuildSpec(newCommands);
_project.setDescription(desc, null);
}
示例10: removeBuilder
import org.eclipse.core.resources.IProjectDescription; //导入方法依赖的package包/类
protected void removeBuilder(String builderId) throws CoreException
{
IProjectDescription description = getProject().getDescription();
ICommand[] commands = description.getBuildSpec();
for (int i = 0; i < commands.length; ++i) {
if (commands[i].getBuilderName().equals(builderId)) {
ICommand[] newCommands = new ICommand[commands.length - 1];
System.arraycopy(commands, 0, newCommands, 0, i);
System.arraycopy(commands, i + 1, newCommands, i,
commands.length - i - 1);
description.setBuildSpec(newCommands);
_project.setDescription(description, null);
return;
}
}
}
示例11: configure
import org.eclipse.core.resources.IProjectDescription; //导入方法依赖的package包/类
@Override
public void configure() throws CoreException {
IProjectDescription desc = project.getDescription();
ICommand[] commands = desc.getBuildSpec();
for (int i = 0; i < commands.length; ++i) {
if (commands[i].getBuilderName().equals(JimpleBuilder.BUILDER_ID)) {
return;
}
}
ICommand[] newCommands = new ICommand[commands.length + 1];
System.arraycopy(commands, 0, newCommands, 0, commands.length);
ICommand command = desc.newCommand();
command.setBuilderName(JimpleBuilder.BUILDER_ID);
newCommands[newCommands.length - 1] = command;
desc.setBuildSpec(newCommands);
project.setDescription(desc, null);
}
示例12: deconfigure
import org.eclipse.core.resources.IProjectDescription; //导入方法依赖的package包/类
@Override
public void deconfigure() throws CoreException {
IProjectDescription description = getProject().getDescription();
ICommand[] commands = description.getBuildSpec();
for (int i = 0; i < commands.length; ++i) {
if (commands[i].getBuilderName().equals(JimpleBuilder.BUILDER_ID)) {
ICommand[] newCommands = new ICommand[commands.length - 1];
System.arraycopy(commands, 0, newCommands, 0, i);
System.arraycopy(commands, i + 1, newCommands, i,
commands.length - i - 1);
description.setBuildSpec(newCommands);
project.setDescription(description, null);
return;
}
}
}
示例13: deconfigure
import org.eclipse.core.resources.IProjectDescription; //导入方法依赖的package包/类
@Override
public void deconfigure() throws CoreException {
IProjectDescription description = getProject().getDescription();
ICommand[] commands = description.getBuildSpec();
for (int i = 0; i < commands.length; ++i) {
if (commands[i].getBuilderName().equals(ClassCleanerBuilder.BUILDER_ID)) {
ICommand[] newCommands = new ICommand[commands.length - 1];
System.arraycopy(commands, 0, newCommands, 0, i);
System.arraycopy(commands, i + 1, newCommands, i,
commands.length - i - 1);
description.setBuildSpec(newCommands);
project.setDescription(description, null);
return;
}
}
}
示例14: configure
import org.eclipse.core.resources.IProjectDescription; //导入方法依赖的package包/类
@Override
public void configure() throws CoreException {
IProjectDescription desc = project.getDescription();
ICommand[] commands = desc.getBuildSpec();
for (int i = 0; i < commands.length; ++i) {
if (commands[i].getBuilderName().equals(JasonBuilder.BUILDER_ID)) {
return;
}
}
ICommand[] newCommands = new ICommand[commands.length + 1];
System.arraycopy(commands, 0, newCommands, 1, commands.length);
ICommand command = desc.newCommand();
command.setBuilderName(JasonBuilder.BUILDER_ID);
newCommands[0] = command;
desc.setBuildSpec(newCommands);
project.setDescription(desc, null);
}
示例15: execute
import org.eclipse.core.resources.IProjectDescription; //导入方法依赖的package包/类
@Override
public Object execute(final ExecutionEvent event) throws ExecutionException {
final IProject project = AddBuilder.getProject(event);
if (project != null) {
try {
final IProjectDescription description = project.getDescription();
final List<ICommand> commands = new ArrayList<ICommand>();
commands.addAll(Arrays.asList(description.getBuildSpec()));
for (final ICommand buildSpec : description.getBuildSpec()) {
if (SolidityBuilder.BUILDER_ID.equals(buildSpec.getBuilderName())) {
// remove builder
commands.remove(buildSpec);
}
}
description.setBuildSpec(commands.toArray(new ICommand[commands.size()]));
project.setDescription(description, null);
} catch (final CoreException e) {
Activator.logError("Error removing solc builder.", e);
}
}
return null;
}