Class Resource

java.lang.Object
org.apache.maven.archetype.model.Resource
All Implemented Interfaces:
Serializable

public class Resource extends Object implements Serializable
Describes a resource file.
Version:
$Revision$ $Date$
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private String
    The encoding to be used when reading/writing this file.
    private String
    The resource file.
    private boolean
    A resource can be filtered, which means the file will be used as Velocity template.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Get the encoding to be used when reading/writing this file.
    Get the resource file.
    boolean
    Get a resource can be filtered, which means the file will be used as Velocity template.
    void
    setEncoding(String encoding)
    Set the encoding to be used when reading/writing this file.
    void
    Set the resource file.
    void
    setFiltered(boolean filtered)
    Set a resource can be filtered, which means the file will be used as Velocity template.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • file

      private String file
      The resource file.
    • encoding

      private String encoding
      The encoding to be used when reading/writing this file. Platform encoding is used by default, or ISO-8859-1 when filename ends in .properties
    • filtered

      private boolean filtered
      A resource can be filtered, which means the file will be used as Velocity template. It can be non-filtered, which means the file will be copied without modification.
  • Constructor Details

    • Resource

      public Resource()
  • Method Details

    • getEncoding

      public String getEncoding()
      Get the encoding to be used when reading/writing this file. Platform encoding is used by default, or ISO-8859-1 when filename ends in .properties
      Returns:
      String
    • getFile

      public String getFile()
      Get the resource file.
      Returns:
      String
    • isFiltered

      public boolean isFiltered()
      Get a resource can be filtered, which means the file will be used as Velocity template. It can be non-filtered, which means the file will be copied without modification.
      Returns:
      boolean
    • setEncoding

      public void setEncoding(String encoding)
      Set the encoding to be used when reading/writing this file. Platform encoding is used by default, or ISO-8859-1 when filename ends in .properties
      Parameters:
      encoding - a encoding object.
    • setFile

      public void setFile(String file)
      Set the resource file.
      Parameters:
      file - a file object.
    • setFiltered

      public void setFiltered(boolean filtered)
      Set a resource can be filtered, which means the file will be used as Velocity template. It can be non-filtered, which means the file will be copied without modification.
      Parameters:
      filtered - a filtered object.