All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.aspectj.org.eclipse.jdt.core.jdom.DOMFactory Maven / Gradle / Ivy

Go to download

AspectJ tools most notably contains the AspectJ compiler (AJC). AJC applies aspects to Java classes during compilation, fully replacing Javac for plain Java classes and also compiling native AspectJ or annotation-based @AspectJ syntax. Furthermore, AJC can weave aspects into existing class files in a post-compile binary weaving step. This library is a superset of AspectJ weaver and hence also of AspectJ runtime.

There is a newer version: 1.9.22.1
Show newest version
/*******************************************************************************
 * Copyright (c) 2000, 2008 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.aspectj.org.eclipse.jdt.core.jdom;

import org.aspectj.org.eclipse.jdt.internal.core.jdom.*;

/**
 * Standard implementation of IDOMFactory, and the only means
 * of creating JDOMs and document fragments.
 * 

* This class may be instantiated. *

* @deprecated The JDOM was made obsolete by the addition in 2.0 of the more * powerful, fine-grained DOM/AST API found in the * org.eclipse.jdt.core.dom package. * @noextend This class is not intended to be subclassed by clients. */ public class DOMFactory implements IDOMFactory { String lineSeparator; /** * Creates a new DOM factory. */ public DOMFactory() { // constructor is explicitly API this.lineSeparator = org.aspectj.org.eclipse.jdt.internal.core.util.Util.getLineSeparator(null, null/*take the workspace line separator as no project is available*/); } @Override public IDOMCompilationUnit createCompilationUnit() { return (new DOMBuilder()).createCompilationUnit(); } @Override public IDOMCompilationUnit createCompilationUnit(char[] sourceCode, String name) { if(sourceCode == null) { return null; } return (new SimpleDOMBuilder()).createCompilationUnit(sourceCode, name.toCharArray()); } @Override public IDOMCompilationUnit createCompilationUnit(String sourceCode, String name) { if(sourceCode == null) { return null; } return (new SimpleDOMBuilder()).createCompilationUnit(sourceCode.toCharArray(), name.toCharArray()); } @Override public IDOMField createField() { return createField("Object aField;"+ this.lineSeparator); //$NON-NLS-1$ } @Override public IDOMField createField(String sourceCode) { if(sourceCode == null) { return null; } return (new DOMBuilder()).createField(sourceCode.toCharArray()); } @Override public IDOMImport createImport() { return (new DOMBuilder()).createImport(); } @Override public IDOMImport createImport(String sourceCode) { if(sourceCode == null) { return null; } return (new DOMBuilder()).createImport(sourceCode.toCharArray()); } @Override public IDOMInitializer createInitializer() { return createInitializer("static {}"+ this.lineSeparator); //$NON-NLS-1$ } @Override public IDOMInitializer createInitializer(String sourceCode) { if(sourceCode == null) { return null; } return (new DOMBuilder()).createInitializer(sourceCode.toCharArray()); } @Override public IDOMMethod createMethod() { return createMethod("public void newMethod() {"+ this.lineSeparator+"}"+ this.lineSeparator); //$NON-NLS-2$ //$NON-NLS-1$ } @Override public IDOMMethod createMethod(String sourceCode) { if(sourceCode == null) { return null; } return (new DOMBuilder()).createMethod(sourceCode.toCharArray()); } @Override public IDOMPackage createPackage() { return (new DOMBuilder()).createPackage(); } @Override public IDOMPackage createPackage(String sourceCode) { if(sourceCode == null) { return null; } return (new DOMBuilder()).createPackage(sourceCode.toCharArray()); } @Override public IDOMType createType() { return createType("public class AClass {"+ this.lineSeparator +"}"+ this.lineSeparator); //$NON-NLS-2$ //$NON-NLS-1$ } @Override public IDOMType createClass() { return createType("public class AClass {"+ this.lineSeparator +"}"+ this.lineSeparator); //$NON-NLS-2$ //$NON-NLS-1$ } @Override public IDOMType createInterface() { return createType("public interface AnInterface {"+ this.lineSeparator +"}"+ this.lineSeparator); //$NON-NLS-2$ //$NON-NLS-1$ } @Override public IDOMType createType(String sourceCode) { if(sourceCode == null) { return null; } return (new DOMBuilder()).createType(sourceCode.toCharArray()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy