OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:newNatures
(Results
1 - 2
of
2
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
AndroidNature.java
151
String[]
newNatures
= new String[natures.length + 1];
155
System.arraycopy(natures, 0,
newNatures
, 1, natures.length);
156
newNatures
[0] = natureId;
158
System.arraycopy(natures, 0,
newNatures
, 0, natures.length);
159
newNatures
[natures.length] = natureId;
162
description.setNatureIds(
newNatures
);
ProjectHelper.java
514
String[]
newNatures
= new String[natures.length + 1];
517
newNatures
[0] = AdtConstants.NATURE_DEFAULT;
520
System.arraycopy(natures, 0,
newNatures
, 1, natures.length);
523
description.setNatureIds(
newNatures
);
547
String[]
newNatures
= new String[natures.length - 1];
549
System.arraycopy(natures, 0,
newNatures
, 0, i);
551
System.arraycopy(natures, i + 1,
newNatures
, i, natures.length - i - 1);
552
description.setNatureIds(
newNatures
);
[
all
...]
Completed in 22 milliseconds