OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TemplateHandler
(Results
1 - 14
of
14
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewProjectWizardState.java
37
template =
TemplateHandler
.createFromName(CATEGORY_PROJECTS,
42
public final
TemplateHandler
template;
TemplateMetadata.java
21
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.ATTR_BACKGROUND;
22
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.ATTR_CLIPART_NAME;
23
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.ATTR_DESCRIPTION;
24
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.ATTR_FOREGROUND;
25
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.ATTR_FORMAT;
26
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.ATTR_NAME;
27
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.ATTR_PADDING;
28
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.ATTR_SHAPE;
29
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.ATTR_SOURCE_TYPE;
30
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.ATTR_TEXT
[
all
...]
Parameter.java
19
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.ATTR_CONSTRAINTS;
20
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.ATTR_DEFAULT;
21
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.ATTR_HELP;
22
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.ATTR_ID;
23
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.ATTR_NAME;
24
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.ATTR_SUGGEST;
224
String typeName = parameter.getAttribute(
TemplateHandler
.ATTR_TYPE);
225
assert typeName != null && !typeName.isEmpty() :
TemplateHandler
.ATTR_TYPE;
NewTemplateWizardState.java
58
private
TemplateHandler
mTemplateHandler;
96
TemplateHandler
getTemplateHandler() {
105
mTemplateHandler =
TemplateHandler
.createFromPath(inputPath);
188
TemplateHandler
handler = getTemplateHandler();
TemplateTestPage.java
103
if (!new File(mTemplate,
TemplateHandler
.TEMPLATE_XML).exists()) {
108
if (mTemplate.getName().equals(
TemplateHandler
.TEMPLATE_XML)) {
StringEvaluator.java
41
* Unlike the more general {@link
TemplateHandler
} which is used to instantiate
52
mParameters =
TemplateHandler
.createBuiltinMap();
NewProjectWizard.java
258
final
TemplateHandler
template = mValues.template;
281
final
TemplateHandler
template = mValues.template;
333
final
TemplateHandler
activityTemplate =
381
private void generateActivity(
TemplateHandler
projectTemplate, IProject project,
395
TemplateHandler
activityTemplate = activityValues.getTemplateHandler();
ActivityPage.java
21
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.PREVIEW_PADDING;
22
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.PREVIEW_WIDTH;
187
TemplateHandler
handler = mValues.activityValues.getTemplateHandler();
271
TemplateHandler
templateHandler
= mValues.activityValues.getTemplateHandler();
272
status =
templateHandler
.validateTemplate(mValues.minSdkLevel,
NewActivityWizard.java
142
TemplateHandler
activityTemplate = mActivityValues.getTemplateHandler();
TemplateHandler.java
117
class
TemplateHandler
{
242
/** Creates a new {@link
TemplateHandler
} for the given root path */
243
static
TemplateHandler
createFromPath(File rootPath) {
244
return new
TemplateHandler
(rootPath, new TemplateManager());
247
/** Creates a new {@link
TemplateHandler
} for the template name, which should
249
static
TemplateHandler
createFromName(String category, String name) {
257
return new
TemplateHandler
(file, manager);
261
return new
TemplateHandler
(new File(getTemplateRootFolder(),
265
private
TemplateHandler
(File rootPath, TemplateManager manager) {
[
all
...]
NewTemplateWizard.java
138
TemplateHandler
activityTemplate = mValues.getTemplateHandler();
TemplateManager.java
21
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.TEMPLATE_XML;
NewTemplatePage.java
21
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.ATTR_DEFAULT;
22
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.ATTR_ID;
23
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.ATTR_NAME;
24
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.PREVIEW_PADDING;
25
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.PREVIEW_WIDTH;
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateHandlerTest.java
23
import static com.android.ide.eclipse.adt.internal.wizards.templates.
TemplateHandler
.ATTR_ID;
545
TemplateHandler
templateHandler
= values.getTemplateHandler();
546
TemplateMetadata template =
templateHandler
.getTemplate();
738
if (
TemplateHandler
.sMostRecentException != null) {
739
fail(values.projectName + ": " +
TemplateHandler
.sMostRecentException.toString());
[
all
...]
Completed in 119 milliseconds