modules/fxpackager/src/main/resources/com/sun/javafx/tools/packager/Bundle.properties

Print this page


   1 MSG_Version=JavaFX Packager version
   2 MSG_Help_1=Usage: javafxpackager -command [-options]\n\
   3      \n\
   4 where command is one of: \n\
   5 \  -createjar\n\
   6 \          The packager produces jar archive according to other parameters. \n\
   7 \  -deploy \n\
   8 \          The packager generates the jnlp and html files according to other\n\
   9 \          parameters.\n\
  10 \  -createbss\n\
  11 \          Converts css file into binary form \n\
  12 \  -signJar\n\
  13 \          Signs jar file(s) with a provided certificate.\n\
  14 \  -makeall\n\
  15 \          Performs compilation, createjar and deploy steps as one call with \n\
  16 \          most arguments predefined. The sources must be located in "src"\n\
  17 \          folder, the resulting files (jar, jnlp, html) are put in "dist"\n\
  18 \          folder. This command may be configured only in a minimal way and is\n\
  19 \          as automated as possible.\n\
  20 \n
  21 MSG_Help_2=Options for createjar command include: \n\
  22 \  -appclass <application class>\n\


 138 \          List of files in srcdir. If omitted, all files in srcdir (which\n\
 139 \          is a mandatory argument in this case) will be signed.\n\
 140 \n
 141 MSG_Help_6=Options for makeAll command include:\n\
 142 \  -appclass <application class>\n\
 143 \          qualified name of the application class to be executed.\n\
 144 \  -preloader <preloader class>\n\
 145 \          qualified name of the preloader class to be executed.\n\
 146 \  -classpath <files>\n\
 147 \          list of dependent jar file names.\n\
 148 \  -name <name>\n\
 149 \          name of the application.\n\
 150 \  -width <width>\n\
 151 \          width of the application.\n\
 152 \  -height <height>\n\
 153 \          height of the application.\n\
 154 \  -v      enable verbose output.\n\
 155 \n
 156 MSG_Help_7=Sample usages:\n\
 157 --------------\n\
 158 javafxpackager -createjar -appclass package.ClassName  \n\
 159 \  -srcdir classes -outdir out -outfile outjar -v\n\
 160 \          Packages the content of the classes directory to outjar.jar,\n\
 161 \          sets the application class to package.ClassName.\n\
 162 javafxpackager -deploy -outdir outdir -outfile outfile -width 34 -height 43 \n\
 163 \  -name AppName -appclass package.ClassName -v -srcdir compiled\n\
 164 \          Generates outfile.jnlp and corresponding outfile.html files in \n\
 165 \          outdir for aplication AppName that is started by package.ClassName\n\
 166 \          class and has dimensions of 34x43.\n\
 167 javafxpackager -makeall -appclass brickbreaker.Main -name BrickBreaker\n\
 168 \  -width 600 -height 600\n\
 169 \          This command does all the packaging work including compilation: \n\
 170 \          compile, createjar, deploy.
 171 
 172 
 173 ERR_UnknownArgument=Error: Unknown argument: {0}
 174 ERR_UnknownCommand=Error: Unknown command: {0}
 175 ERR_BSSConversionFailed=Error: Conversion of CSS file to binary form failed for file: {0}, reason: {1}
 176 ERR_UnknownReason=Unknown reason
 177 ERR_MissingArgument=Error: Missing argument: {0}
 178 ERR_IllegalCSSFile=Error: -cssfile argument must be a readable file
 179 ERR_EmbedingLauncher=Error: Missing embedded resource [{0}]
 180 ERR_CreatingDirFailed=Error: Failed to create directory {0}
 181 ERR_CreatingFileFailed=Error: Failed to create file {0}
 182 ERR_CreatingTempFileFailed=Error: Failed to create temporary file
 183 ERR_CreatingJarFailed=Error: Failed to create jar file {0}
 184 ERR_FileCopyFailed=Error: Failed copy file to directory {0}
 185 ERR_FileReadFailed=Error: Failed reading file {0}
 186 ERR_CantFindRuntime=Error: jfxrt.jar needs to be on classpath for -createbss and for -createJar without -nocss2bin
 187 ERR_CantDeleteFile=Error: File {0} could not be deleted.


   1 MSG_Version=Java Packager version
   2 MSG_Help_1=Usage: javapackager -command [-options]\n\
   3      \n\
   4 where command is one of: \n\
   5 \  -createjar\n\
   6 \          The packager produces jar archive according to other parameters. \n\
   7 \  -deploy \n\
   8 \          The packager generates the jnlp and html files according to other\n\
   9 \          parameters.\n\
  10 \  -createbss\n\
  11 \          Converts css file into binary form \n\
  12 \  -signJar\n\
  13 \          Signs jar file(s) with a provided certificate.\n\
  14 \  -makeall\n\
  15 \          Performs compilation, createjar and deploy steps as one call with \n\
  16 \          most arguments predefined. The sources must be located in "src"\n\
  17 \          folder, the resulting files (jar, jnlp, html) are put in "dist"\n\
  18 \          folder. This command may be configured only in a minimal way and is\n\
  19 \          as automated as possible.\n\
  20 \n
  21 MSG_Help_2=Options for createjar command include: \n\
  22 \  -appclass <application class>\n\


 138 \          List of files in srcdir. If omitted, all files in srcdir (which\n\
 139 \          is a mandatory argument in this case) will be signed.\n\
 140 \n
 141 MSG_Help_6=Options for makeAll command include:\n\
 142 \  -appclass <application class>\n\
 143 \          qualified name of the application class to be executed.\n\
 144 \  -preloader <preloader class>\n\
 145 \          qualified name of the preloader class to be executed.\n\
 146 \  -classpath <files>\n\
 147 \          list of dependent jar file names.\n\
 148 \  -name <name>\n\
 149 \          name of the application.\n\
 150 \  -width <width>\n\
 151 \          width of the application.\n\
 152 \  -height <height>\n\
 153 \          height of the application.\n\
 154 \  -v      enable verbose output.\n\
 155 \n
 156 MSG_Help_7=Sample usages:\n\
 157 --------------\n\
 158 javapackager -createjar -appclass package.ClassName  \n\
 159 \  -srcdir classes -outdir out -outfile outjar -v\n\
 160 \          Packages the content of the classes directory to outjar.jar,\n\
 161 \          sets the application class to package.ClassName.\n\
 162 javapackager -deploy -outdir outdir -outfile outfile -width 34 -height 43 \n\
 163 \  -name AppName -appclass package.ClassName -v -srcdir compiled\n\
 164 \          Generates outfile.jnlp and corresponding outfile.html files in \n\
 165 \          outdir for aplication AppName that is started by package.ClassName\n\
 166 \          class and has dimensions of 34x43.\n\
 167 javapackager -makeall -appclass brickbreaker.Main -name BrickBreaker\n\
 168 \  -width 600 -height 600\n\
 169 \          This command does all the packaging work including compilation: \n\
 170 \          compile, createjar, deploy.
 171 
 172 
 173 ERR_UnknownArgument=Error: Unknown argument: {0}
 174 ERR_UnknownCommand=Error: Unknown command: {0}
 175 ERR_BSSConversionFailed=Error: Conversion of CSS file to binary form failed for file: {0}, reason: {1}
 176 ERR_UnknownReason=Unknown reason
 177 ERR_MissingArgument=Error: Missing argument: {0}
 178 ERR_IllegalCSSFile=Error: -cssfile argument must be a readable file
 179 ERR_EmbedingLauncher=Error: Missing embedded resource [{0}]
 180 ERR_CreatingDirFailed=Error: Failed to create directory {0}
 181 ERR_CreatingFileFailed=Error: Failed to create file {0}
 182 ERR_CreatingTempFileFailed=Error: Failed to create temporary file
 183 ERR_CreatingJarFailed=Error: Failed to create jar file {0}
 184 ERR_FileCopyFailed=Error: Failed copy file to directory {0}
 185 ERR_FileReadFailed=Error: Failed reading file {0}
 186 ERR_CantFindRuntime=Error: jfxrt.jar needs to be on classpath for -createbss and for -createJar without -nocss2bin
 187 ERR_CantDeleteFile=Error: File {0} could not be deleted.