All launchers need to have a javadoc
authorJaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 30 Apr 2013 16:24:28 +0200
changeset 10666792dc0bafb9
parent 1063 9e3a4ba88c2f
child 1067 5c0eac836139
child 1069 623816269b75
All launchers need to have a javadoc
launcher/api/pom.xml
launcher/fx/pom.xml
launcher/http/pom.xml
launcher/http/src/main/java/org/apidesign/bck2brwsr/launcher/b2b/LauncherBck2Brwsr.java
     1.1 --- a/launcher/api/pom.xml	Tue Apr 30 15:19:27 2013 +0200
     1.2 +++ b/launcher/api/pom.xml	Tue Apr 30 16:24:28 2013 +0200
     1.3 @@ -14,6 +14,18 @@
     1.4    <properties>
     1.5      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     1.6    </properties>
     1.7 +    <build>
     1.8 +        <plugins>
     1.9 +            <plugin>
    1.10 +                <groupId>org.apache.maven.plugins</groupId>
    1.11 +                <artifactId>maven-javadoc-plugin</artifactId>
    1.12 +                <configuration>
    1.13 +                    <subpackages>org.apidesign.bck2brwsr.launcher</subpackages>
    1.14 +                    <skip>false</skip>
    1.15 +                </configuration>
    1.16 +            </plugin>
    1.17 +        </plugins>
    1.18 +    </build>
    1.19    <dependencies>
    1.20    </dependencies>
    1.21  </project>
     2.1 --- a/launcher/fx/pom.xml	Tue Apr 30 15:19:27 2013 +0200
     2.2 +++ b/launcher/fx/pom.xml	Tue Apr 30 16:24:28 2013 +0200
     2.3 @@ -22,6 +22,14 @@
     2.4                      <target>1.7</target>
     2.5                  </configuration>
     2.6              </plugin>
     2.7 +            <plugin>
     2.8 +                <groupId>org.apache.maven.plugins</groupId>
     2.9 +                <artifactId>maven-javadoc-plugin</artifactId>
    2.10 +                <configuration>
    2.11 +                    <subpackages>org.apidesign.bck2brwsr.launcher.fx</subpackages>
    2.12 +                    <skip>false</skip>
    2.13 +                </configuration>
    2.14 +            </plugin>
    2.15          </plugins>
    2.16      </build>
    2.17      <properties>
     3.1 --- a/launcher/http/pom.xml	Tue Apr 30 15:19:27 2013 +0200
     3.2 +++ b/launcher/http/pom.xml	Tue Apr 30 16:24:28 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.b2b</subpackages>
    3.12 +                    <skip>false</skip>
    3.13 +                </configuration>
    3.14 +            </plugin>
    3.15          </plugins>
    3.16      </build>
    3.17      <properties>
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/launcher/http/src/main/java/org/apidesign/bck2brwsr/launcher/b2b/LauncherBck2Brwsr.java	Tue Apr 30 16:24:28 2013 +0200
     4.3 @@ -0,0 +1,33 @@
     4.4 +/**
     4.5 + * Back 2 Browser Bytecode Translator
     4.6 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4.7 + *
     4.8 + * This program is free software: you can redistribute it and/or modify
     4.9 + * it under the terms of the GNU General Public License as published by
    4.10 + * the Free Software Foundation, version 2 of the License.
    4.11 + *
    4.12 + * This program is distributed in the hope that it will be useful,
    4.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    4.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    4.15 + * GNU General Public License for more details.
    4.16 + *
    4.17 + * You should have received a copy of the GNU General Public License
    4.18 + * along with this program. Look for COPYING file in the top folder.
    4.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
    4.20 + */
    4.21 +package org.apidesign.bck2brwsr.launcher.b2b;
    4.22 +
    4.23 +import java.awt.Desktop;
    4.24 +import org.apidesign.bck2brwsr.launcher.Launcher;
    4.25 +
    4.26 +/** This is a launcher for the <a href="http://bck2brwsr.apidesign.org">Bck2Brwsr</a>
    4.27 + * project that is using {@link Desktop} (or {@link Process}) to display the 
    4.28 + * external browser in separate process. Use {@link Launcher} methods to access this
    4.29 + * functionality via public, supported methods.
    4.30 + *
    4.31 + * @author Jaroslav Tulach
    4.32 + */
    4.33 +public final class LauncherBck2Brwsr {
    4.34 +    private LauncherBck2Brwsr() {
    4.35 +    }
    4.36 +}