Class GemFileEntry

java.lang.Object
de.saumya.mojo.gems.gem.GemFileEntry

public class GemFileEntry extends Object
A Gem file entry. It is sourced from a plain File and tells about where it wants to be in Gem.
  • Field Details

    • pathInGem

      private String pathInGem
      The path where the file should be within Gem. Usually it is "lib/theFileName.ext", but it may be overridden.
    • source

      private File source
      The actual source of the file.
  • Constructor Details

    • GemFileEntry

      public GemFileEntry(File source, String pathInGem)
  • Method Details

    • getPathInGem

      public String getPathInGem()
    • setPathInGem

      public void setPathInGem(String pathInGem)
    • getSource

      public File getSource()
    • setSource

      public void setSource(File source)