Merge-in addition of javadoc's for the launcher projects
authorJaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 30 Apr 2013 16:26:49 +0200
changeset 106816820486d63d
parent 1065 75daa5478b89
parent 1067 5c0eac836139
child 1071 2894b9a9dbfc
Merge-in addition of javadoc's for the launcher projects
.hgtags
launcher/api/pom.xml
launcher/fx/pom.xml
launcher/http/pom.xml
     1.1 --- a/.hgtags	Tue Apr 30 15:22:57 2013 +0200
     1.2 +++ b/.hgtags	Tue Apr 30 16:26:49 2013 +0200
     1.3 @@ -6,5 +6,4 @@
     1.4  caf1e66268fd4100d57922d973ae09a6bf3be847 release-${releaseVersion}
     1.5  0000000000000000000000000000000000000000 release-${releaseVersion}
     1.6  52a4a5f868bccc67d50ad17f793b9ebabdf75d88 release-0.6
     1.7 -e3845e4f0ec83ef27df045528e73fe4f1e851190 release-0.7
     1.8 -9e3a4ba88c2f2f1c63ffcbeb1bb91428e6c212ea release-0.7
     1.9 +6792dc0bafb9c76a099e45bfc9e967d6a2823827 release-0.7
     2.1 --- a/launcher/api/pom.xml	Tue Apr 30 15:22:57 2013 +0200
     2.2 +++ b/launcher/api/pom.xml	Tue Apr 30 16:26:49 2013 +0200
     2.3 @@ -14,6 +14,18 @@
     2.4    <properties>
     2.5      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     2.6    </properties>
     2.7 +    <build>
     2.8 +        <plugins>
     2.9 +            <plugin>
    2.10 +                <groupId>org.apache.maven.plugins</groupId>
    2.11 +                <artifactId>maven-javadoc-plugin</artifactId>
    2.12 +                <configuration>
    2.13 +                    <subpackages>org.apidesign.bck2brwsr.launcher</subpackages>
    2.14 +                    <skip>false</skip>
    2.15 +                </configuration>
    2.16 +            </plugin>
    2.17 +        </plugins>
    2.18 +    </build>
    2.19    <dependencies>
    2.20    </dependencies>
    2.21  </project>
     3.1 --- a/launcher/fx/pom.xml	Tue Apr 30 15:22:57 2013 +0200
     3.2 +++ b/launcher/fx/pom.xml	Tue Apr 30 16:26:49 2013 +0200
     3.3 @@ -22,6 +22,14 @@
     3.4                      <target>1.7</target>
     3.5                  </configuration>
     3.6              </plugin>
     3.7 +            <plugin>
     3.8 +                <groupId>org.apache.maven.plugins</groupId>
     3.9 +                <artifactId>maven-javadoc-plugin</artifactId>
    3.10 +                <configuration>
    3.11 +                    <subpackages>org.apidesign.bck2brwsr.launcher.fx</subpackages>
    3.12 +                    <skip>false</skip>
    3.13 +                </configuration>
    3.14 +            </plugin>
    3.15          </plugins>
    3.16      </build>
    3.17      <properties>
     4.1 --- a/launcher/http/pom.xml	Tue Apr 30 15:22:57 2013 +0200
     4.2 +++ b/launcher/http/pom.xml	Tue Apr 30 16:26:49 2013 +0200
     4.3 @@ -22,6 +22,14 @@
     4.4                      <target>1.7</target>
     4.5                  </configuration>
     4.6              </plugin>
     4.7 +            <plugin>
     4.8 +                <groupId>org.apache.maven.plugins</groupId>
     4.9 +                <artifactId>maven-javadoc-plugin</artifactId>
    4.10 +                <configuration>
    4.11 +                    <subpackages>org.apidesign.bck2brwsr.launcher.b2b</subpackages>
    4.12 +                    <skip>false</skip>
    4.13 +                </configuration>
    4.14 +            </plugin>
    4.15          </plugins>
    4.16      </build>
    4.17      <properties>
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/launcher/http/src/main/java/org/apidesign/bck2brwsr/launcher/b2b/LauncherBck2Brwsr.java	Tue Apr 30 16:26:49 2013 +0200
     5.3 @@ -0,0 +1,33 @@
     5.4 +/**
     5.5 + * Back 2 Browser Bytecode Translator
     5.6 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     5.7 + *
     5.8 + * This program is free software: you can redistribute it and/or modify
     5.9 + * it under the terms of the GNU General Public License as published by
    5.10 + * the Free Software Foundation, version 2 of the License.
    5.11 + *
    5.12 + * This program is distributed in the hope that it will be useful,
    5.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    5.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    5.15 + * GNU General Public License for more details.
    5.16 + *
    5.17 + * You should have received a copy of the GNU General Public License
    5.18 + * along with this program. Look for COPYING file in the top folder.
    5.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
    5.20 + */
    5.21 +package org.apidesign.bck2brwsr.launcher.b2b;
    5.22 +
    5.23 +import java.awt.Desktop;
    5.24 +import org.apidesign.bck2brwsr.launcher.Launcher;
    5.25 +
    5.26 +/** This is a launcher for the <a href="http://bck2brwsr.apidesign.org">Bck2Brwsr</a>
    5.27 + * project that is using {@link Desktop} (or {@link Process}) to display the 
    5.28 + * external browser in separate process. Use {@link Launcher} methods to access this
    5.29 + * functionality via public, supported methods.
    5.30 + *
    5.31 + * @author Jaroslav Tulach
    5.32 + */
    5.33 +public final class LauncherBck2Brwsr {
    5.34 +    private LauncherBck2Brwsr() {
    5.35 +    }
    5.36 +}