X-Git-Url: http://www2.svjatoslav.eu/gitweb/?a=blobdiff_plain;ds=sidebyside;f=doc%2Findex.html;h=0b489cba473ed1e13f31145e4a2e11c999300635;hb=9f9212a6430077d4cbe809cfa409b1a621d7f388;hp=b45b92d7a34b26205ca86658d83b8d7e989cb8b1;hpb=f097ecc7b13c2ff6d51342168718348119d7dfdb;p=svjatoslav_commons.git diff --git a/doc/index.html b/doc/index.html index b45b92d..0b489cb 100644 --- a/doc/index.html +++ b/doc/index.html @@ -1,284 +1,354 @@ - - + + + + + + Svjatoslav Commons - Java library of commonly used functions - - - - - - - -" - - - + -
-

Svjatoslav Commons - Java library of commonly used functions

-
- +
-
-

1 General

-
-

-Library contains: -

+
+

1.1. Source code

+
+
+
+
-
  • Byte array to HEX string converter. -
  • +
    +

    2. Library contents

    +
    +
      +
    • See JavaDoc.
    • -
    • Utility that tries to quess user desktop directory. -
    • +
    • +Bit input and output streams. +

      +
      +eu.svjatoslav.commons.data.BitInputStream
      +eu.svjatoslav.commons.data.BitOutputStream
      +
    • -
    • File path parser. -
    • +
    • +Slightly enhanced data input and output streams. +

      +
      +eu.svjatoslav.commons.data.EnhancedDataInputStream
      +eu.svjatoslav.commons.data.EnhancedDataOutputStream
      +
    • -
    • File IO helper. -
    • +
    • +Byte array to HEX string converter. +

      +
      +eu.svjatoslav.commons.data.HexConverter
      +
    • + +
    • +Utility that tries to quess user desktop directory. (Quite ugly and +unreliable. Better solution is needed.) +

      +
      +eu.svjatoslav.commons.file.CommonPathResolver
      +
    • + +
    • +File path parser. +

      +
      +eu.svjatoslav.commons.file.FilePathParser
      +
    • + +
    • +File IO helper. +

      +
      +eu.svjatoslav.commons.file.IOHelper
      +
    • Graphical error dialog.
        -
      • Reusable graphical dialog to capture and show program exceptions +
      • +Reusable graphical dialog to capture and show program exceptions and associated program call stack traceback. -

      • -
      -
    • +

      +
      +eu.svjatoslav.commons.gui.dialog.ExceptionDialog
      +
      +
    -
  • Primitive and simple component to add navigation menus to the web +
  • +Primitive and simple component to add navigation menus to the web sites. -

  • +

    +
    +eu.svjatoslav.commons.network.navigation
    +
    -
  • String tokenizer. -
  • +
  • +String tokenizer. +

    +
    +eu.svjatoslav.commons.string.tokenizer
    +
  • -
  • Improved String, optimized for dealing with prefixes and suffixes. -
  • +
  • +Improved String, optimized for dealing with prefixes and suffixes. +

    +
    +eu.svjatoslav.commons.string.String2
    +
  • -
  • Wildcards matcher. (?, *) -
  • +
  • +Wildcards matcher. (?, *) +

    +
    +eu.svjatoslav.commons.string.WildCardMatcher#match
    +
  • -
    -

    2 Usage

    -
    +
    +

    3. Usage

    +

    Instructions to embed svjatoslav-commons in your project as a library:

    @@ -288,13 +358,12 @@ Maven pom.xml file snippet:

    -
    <dependencies>
         ...
         <dependency>
             <groupId>eu.svjatoslav</groupId>
             <artifactId>svjatoslavcommons</artifactId>
    -        <version>1.5</version>
    +        <version>1.9</version>
         </dependency>
         ...
     </dependencies>
    @@ -313,20 +382,11 @@ Maven pom.xml file snippet:
     
    -
    -
    -