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

net.anotheria.asg.generator.FileEntry Maven / Gradle / Ivy

package net.anotheria.asg.generator;

import net.anotheria.util.StringUtils;

/**
 * Generation result.
 *
 * @author lrosenberg
 * @version $Id: $Id
 */
public class FileEntry {
	/**
	 * The path to store the file into.
	 */
	private String path;
	/**
	 * The name of the file.
	 */
	private String name;
	/**
	 * The content of the file.
	 */
	private String content;
	/**
	 * The type of the file. The type of the file is the extension.
	 */
	private String type;
	
	/**
	 * 

Constructor for FileEntry.

*/ public FileEntry(){ type = ".java"; } /** *

Constructor for FileEntry.

* * @param aPath a {@link java.lang.String} object. * @param aName a {@link java.lang.String} object. * @param aContent a {@link java.lang.String} object. * @param aType a {@link java.lang.String} object. */ public FileEntry(String aPath, String aName, String aContent, String aType){ this(); this.path = aPath; this.name = aName; this.content = aContent; type = aType; } /** *

Constructor for FileEntry.

* * @param aPath a {@link java.lang.String} object. * @param aName a {@link java.lang.String} object. * @param aContent a {@link java.lang.String} object. */ public FileEntry(String aPath, String aName, String aContent){ this(); this.path = aPath; this.name = aName; this.content = aContent; } /** *

Constructor for FileEntry.

* * @param artefact a {@link net.anotheria.asg.generator.GeneratedArtefact} object. */ public FileEntry(GeneratedArtefact artefact){ this(); if (artefact!=null){ path = artefact.getPath(); name = artefact.getName(); type = artefact.getFileType(); content = artefact.createFileContent(); } } /** *

Getter for the field content.

* * @return a {@link java.lang.String} object. */ public String getContent() { return content; } /** *

Getter for the field name.

* * @return a {@link java.lang.String} object. */ public String getName() { return name; } /** *

Getter for the field path.

* * @return a {@link java.lang.String} object. */ public String getPath() { return path; } /** *

Setter for the field content.

* * @param string a {@link java.lang.String} object. */ public void setContent(String string) { content = string; } /** *

Setter for the field name.

* * @param string a {@link java.lang.String} object. */ public void setName(String string) { name = string; } /** *

Setter for the field path.

* * @param string a {@link java.lang.String} object. */ public void setPath(String string) { path = string; } /** {@inheritDoc} */ @Override public String toString(){ return path+"/"+name; } /** * Resolves a package name to a full path including sources dir. * * @param packageName a {@link java.lang.String} object. * @return full path of the package */ public static String package2fullPath(String packageName){ return "java/" + package2path(packageName); } /** * Resolves a package name to a path. * * @param packageName a {@link java.lang.String} object. * @return path of package */ public static String package2path(String packageName){ return StringUtils.replace(packageName, '.', '/'); } /** *

Getter for the field type.

* * @return type of the file */ public String getType() { return type; } /** * Sets type of the file. * * @param string type of file to set */ public void setType(String string) { type = string; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy