Revision: 7716
Author: jlaba...@google.com
Date: Fri Mar 12 05:06:15 2010
Log: Adding missing package descriptions to various packages.
http://gwt-code-reviews.appspot.com/176801

http://code.google.com/p/google-web-toolkit/source/detail?r=7716

Added:
 /trunk/dev/core/src/com/google/gwt/core/linker/package.html
 /trunk/user/src/com/google/gwt/i18n/client/constants/package.html
 /trunk/user/src/com/google/gwt/i18n/rebind/package.html
 /trunk/user/src/com/google/gwt/i18n/server/package.html
 /trunk/user/src/com/google/gwt/i18n/shared/package.html
 /trunk/user/src/com/google/gwt/jsonp/client/package.html
 /trunk/user/src/com/google/gwt/resources/client/package.html
 /trunk/user/src/com/google/gwt/resources/ext/package.html
 /trunk/user/src/com/google/gwt/rpc/client/package.html
 /trunk/user/src/com/google/gwt/rpc/server/package.html
 /trunk/user/src/com/google/gwt/uibinder/client/package-info.java

=======================================
--- /dev/null
+++ /trunk/dev/core/src/com/google/gwt/core/linker/package.html Fri Mar 12 05:06:15 2010
@@ -0,0 +1,5 @@
+<html>
+<body>
+This package contains implementations of the GWT bootstrap linkers.
+</body>
+</html>
=======================================
--- /dev/null
+++ /trunk/user/src/com/google/gwt/i18n/client/constants/package.html Fri Mar 12 05:06:15 2010
@@ -0,0 +1,9 @@
+<html>
+<body>
+Predefined internationalized constants for currency, date, time, and numbers.
+
+This package contains interfaces that define internationalized constants used +by the class in {...@link com.google.gwt.i18n.client} to format currency, date,
+time, and numeric strings.
+</body>
+</html>
=======================================
--- /dev/null
+++ /trunk/user/src/com/google/gwt/i18n/rebind/package.html Fri Mar 12 05:06:15 2010
@@ -0,0 +1,5 @@
+<html>
+<body>
+This package contains i18n generators. The class in this package are not meant to be used directly.
+</body>
+</html>
=======================================
--- /dev/null
+++ /trunk/user/src/com/google/gwt/i18n/server/package.html Fri Mar 12 05:06:15 2010
@@ -0,0 +1,5 @@
+<html>
+<body>
+This package contains server-side i18n classes and interfaces.
+</body>
+</html>
=======================================
--- /dev/null
+++ /trunk/user/src/com/google/gwt/i18n/shared/package.html Fri Mar 12 05:06:15 2010
@@ -0,0 +1,6 @@
+<html>
+<body>
+This package contains i18n classes and interfaces shared between client and
+server.
+</body>
+</html>
=======================================
--- /dev/null
+++ /trunk/user/src/com/google/gwt/jsonp/client/package.html Fri Mar 12 05:06:15 2010
@@ -0,0 +1,10 @@
+<html>
+<body>
+Classes for sending cross domain requests to an http server, potentially on a
+different domain, via JSONP.
+
+This package contains classes that allow applications to send requests to
+servers on different domains than the host page.
+server.
+</body>
+</html>
=======================================
--- /dev/null
+++ /trunk/user/src/com/google/gwt/resources/client/package.html Fri Mar 12 05:06:15 2010
@@ -0,0 +1,10 @@
+<html>
+<body>
+Classes for aggregating static resources into bundles.
+
+This package contains classes to aggregate and minify static resources into
+bundles that will be downloaded in a single request.  Bundling resources
+decreases the number of requests sent to the server, improving application
+performance and load time.
+</body>
+</html>
=======================================
--- /dev/null
+++ /trunk/user/src/com/google/gwt/resources/ext/package.html Fri Mar 12 05:06:15 2010
@@ -0,0 +1,6 @@
+<html>
+<body>
+This package contains extension hooks for adding new resource types to
+ClientBundle.
+</body>
+</html>
=======================================
--- /dev/null
+++ /trunk/user/src/com/google/gwt/rpc/client/package.html Fri Mar 12 05:06:15 2010
@@ -0,0 +1,5 @@
+<html>
+<body>
+Contains the client-side APIs for deRPC.
+</body>
+</html>
=======================================
--- /dev/null
+++ /trunk/user/src/com/google/gwt/rpc/server/package.html Fri Mar 12 05:06:15 2010
@@ -0,0 +1,5 @@
+<html>
+<body>
+Contains the server-side APIs for deRPC.
+</body>
+</html>
=======================================
--- /dev/null
+++ /trunk/user/src/com/google/gwt/uibinder/client/package-info.java Fri Mar 12 05:06:15 2010
@@ -0,0 +1,41 @@
+/*
+ * Copyright 2010 Google Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of
+ * the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations under
+ * the License.
+ */
+
+/**
+ * Classes used to generate user interfaces using declarative ui.xml files.
+ *
+ * <p>
+ * This package contains the classes and interfaces that allow you to define
+ * user interfaces from ui.xml template files, managed by generated
+ * implementations of the {...@link UiBinder} interface. UiBinder templates allow
+ * you to lay out your widgets and design new ones via HTML, CSS and Image
+ * resources (the last two via generated {...@link com.google.gwt.resources.client + * ClientBundles}) with a minimum of coding. They also have extensive support
+ * for internationalization, by generating
+ * {...@link com.google.gwt.i18n.client.Messages Messages}.
+ * </p>
+ *
+ * <p>
+ * Follow the links below for general documentation. Specialized markup for
+ * individual widget types is described in their javadoc. In particular, see
+ * {...@link com.google.gwt.user.client.ui.UIObject UIObject} for markup that
+ * applies to all widgets.
+ * </p>
+ *
+ * @see <a href="http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html";>Declarative Layout with UiBinder</a> + * @see <a href="http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinderI18n.html";>Internationalization - UiBinder</A>
+ */
+package com.google.gwt.uibinder.client;

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to