gwtXPDownloadsBlog

References

This document is generated from GWT’s source code for your references.

Tags
absolutePanel button checkBox dataTable
decoratedTabPanel decoratorPanel disclosurePanel errors
flexTable flowPanel grid headerCell
horizontalPanel horizontalSplitPanel html hyperlink
label listBox menuBar menuItem
menuItemSeparator passwordTextBox radioButton scrollPanel
simplePanel tab tabPanel tableCell
textArea textBox verticalPanel verticalSplitPanel

absolutePanel

An absolute panel positions all of its children absolutely, allowing them to overlap.

Note that this panel will not automatically resize itself to allow enough room for its absolutely-positioned children. It must be explicitly sized in order to make room for them.

Once a widget has been added to an absolute panel, the panel effectively “owns” the positioning of the widget. Any existing positioning attributes on the widget may be modified by the panel.

Attributes

(None)

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

button

A standard push-button widget.

Attributes

(None)

Attributes inherited from focusWidget

enabled, onBlur, onClick, onFocus, onKeyDown, onKeyPress, onKeyUp, onMouseDown, onMouseMove, onMouseOut, onMouseOver, onMouseUp, onMouseWheel

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

buttonBase (abstract)

Abstract base class for Button, CheckBox, RadioButton.

Attributes

(None)

Attributes inherited from focusWidget

enabled, onBlur, onClick, onFocus, onKeyDown, onKeyPress, onKeyUp, onMouseDown, onMouseMove, onMouseOut, onMouseOver, onMouseUp, onMouseWheel

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

cellPanel (abstract)

A panel whose child widgets are contained within the cells of a table. Each cell’s size may be set independently. Each child widget can take up a subset of its cell and can be aligned within it.

Attributes

Name Type Description
borderWidth int Sets the width of the border to be applied to all cells in this panel. This is particularly useful when debugging layouts, in that it allows you to see explicitly the cells that contain this panel’s children.
spacing int Sets the amount of spacing between this panel’s cells.

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

checkBox

A standard check box widget. This class also serves as a base class for RadioButton.

Attributes

Name Type Description
checked boolean Checks or unchecks this check box. Does not fire ValueChangeEvent. (If you want the event to fire, use #setValue(Boolean, boolean) )
formValue String Set the value property on the input element that backs this widget. This is the value that will be associated with the CheckBox’s name and submitted to the server if a FormPanel that holds it is submitted and the box is checked.

Don’t confuse this with #setValue, which actually checks and unchecks the box.

value Boolean Checks or unchecks the text box.

Note that this does not set the value property of the checkbox input element wrapped by this widget. For access to that property, see #setFormValue(String)

Attributes inherited from focusWidget

enabled, onBlur, onClick, onFocus, onKeyDown, onKeyPress, onKeyUp, onMouseDown, onMouseMove, onMouseOut, onMouseOver, onMouseUp, onMouseWheel

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

complexPanel (abstract)

Abstract base class for panels that can contain multiple child widgets.

Attributes

(None)

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

composite (abstract)

A type of widget that can wrap another widget, hiding the wrapped widget’s methods. When added to a panel, a composite behaves exactly as if the widget it wraps had been added.

The composite is useful for creating a single widget out of an aggregate of multiple other widgets contained in a single panel.

Attributes

(None)

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

dataTable

Table shows data from its values attribute

Attributes

Name Type Description
selectedIndex int Index of selected row
values List List of values to be shown in this table
var String Variable name, used to display a row

Attributes inherited from htmlTable

borderWidth, cellPadding, cellSpacing, onClick

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

decoratedTabPanel

A TabPanel that uses a DecoratedTabBar with rounded corners.

Attributes

(None)

Attributes inherited from tabPanel

onBeforeSelection, onSelection

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

decoratorPanel

A SimplePanel that wraps its contents in stylized boxes, which can be used to add rounded corners to a Widget.

Wrapping a Widget in a “9-box” allows users to specify images in each of the corners and along the four borders. This method allows the content within the DecoratorPanel to resize without disrupting the look of the border. In addition, rounded corners can generally be combined into a single image file, which reduces the number of downloaded files at startup. This class also simplifies the process of using AlphaImageLoaders to support 8-bit transparencies (anti-aliasing and shadows) in ie6, which does not support them normally.

Attributes

(None)

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

disclosurePanel

A widget that consists of a header and a content panel that discloses the content when a user clicks on the header.

Attributes

Name Type Description
content Widget Sets the content widget which can be opened and closed by this panel. If there is a preexisting content widget, it will be detached.
header Widget Sets the widget used as the header for the panel.
headerText String Text displayed in header of this DisclosurePanel
onClose Method Called when CloseEvent is fired.
onOpen Method Called when OpenEvent is fired.
open boolean Changes the visible state of this DisclosurePanel.

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

errors

Attributes

(None)

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

flexTable

A flexible table that creates cells on demand. It can be jagged (that is, each row can contain a different number of cells) and individual cells can be set to span multiple rows or columns.

Attributes

(None)

Attributes inherited from htmlTable

borderWidth, cellPadding, cellSpacing, onClick

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

flowPanel

A panel that formats its child widgets using the default HTML layout behavior.

Attributes

(None)

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

focusWidget (abstract)

Abstract base class for most widgets that can receive keyboard focus.

Attributes

Name Type Description
enabled boolean Sets whether this widget is enabled.
onBlur Method Called when BlurEvent is fired.
onClick Method Called when a native click event is fired.
onFocus Method Called when FocusEvent is fired.
onKeyDown Method Called when KeyDownEvent is fired.
onKeyPress Method Called when KeyPressEvent is fired.
onKeyUp Method Called when KeyUpEvent is fired.
onMouseDown Method Called when MouseDown is fired.
onMouseMove Method Called when MouseMoveEvent is fired.
onMouseOut Method Called when MouseOutEvent is fired.
onMouseOver Method Called when MouseOverEvent is fired.
onMouseUp Method Called when MouseUpEvent is fired.
onMouseWheel Method Called when MouseWheelEvent is fired.

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

grid

A rectangular grid that can contain text, html, or a child Widget within its cells. It must be resized explicitly to the desired number of rows and columns.

Attributes

Name Type Description
columns int Number of columns in this grid. This is required attribute.
rows int Number of rows in this grid. This is required attribute.

Attributes inherited from htmlTable

borderWidth, cellPadding, cellSpacing, onClick

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

headerCell

Attributes

(None)

Attributes inherited from tableCell

col, colSpan, columnWidth, horizontalAlignment, row, rowSpan, verticalAlignment, wordWrap

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

horizontalPanel

A panel that lays all of its widgets out in a single horizontal column.

Attributes

Name Type Description
horizontalAlignment HorizontalAlignmentConstant Sets the default horizontal alignment to be used for widgets added to this panel. It only applies to widgets added after this property is set.
verticalAlignment VerticalAlignmentConstant Sets the default vertical alignment to be used for widgets added to this panel. It only applies to widgets added after this property is set.

Attributes inherited from cellPanel

borderWidth, spacing

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

horizontalSplitPanel

A panel that arranges two widgets in a single horizontal row and allows the user to interactively change the proportion of the width dedicated to each of the two widgets. Widgets contained within a HorizontalSplitPanel will be automatically decorated with scrollbars when necessary.

Attributes

Name Type Description
endOfLineWidget Widget Sets the widget in the pane that is at the end of the line direction for the layout. That is, in an RTL layout, sets the widget in the left pane, and in and RTL layout, sets the widget in the right pane.
leftWidget Widget Sets the widget in the left side of the panel.
rightWidget Widget Sets the widget in the right side of the panel.
splitPosition String Moves the position of the splitter. This method is not bidi-sensitive. The size specified is always the size of the left region, regardless of directionality.
splitPositionUsingPixels int Set the splitter’s position in units of pixels. px represents the splitter’s position as a distance of px pixels from the left edge of the container. This is true even in a bidi environment. Callers of this method must be aware of this constraint.
startOfLineWidget Widget Sets the widget in the pane that is at the start of the line direction for the layout. That is, in an RTL layout, sets the widget in the right pane, and in and RTL layout, sets the widget in the left pane.

Attributes inherited from splitPanel

splitPosition

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

html

A widget that can contain arbitrary HTML. This widget uses a <div> element, causing it to be displayed with block layout.

If you only need a simple label (text, but not HTML), then the Label widget is more appropriate, as it disallows the use of HTML, which can lead to potential security issues if not used properly.

Attributes

(None)

Attributes inherited from label

onClick, onMouseDown, onMouseMove, onMouseOut, onMouseOver, onMouseUp, onMouseWheel, pattern

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

htmlTable (abstract)

HTMLTable contains the common table algorithms for Grid and FlexTable.

Attributes

Name Type Description
borderWidth int Sets the width of the table’s border. This border is displayed around all cells in the table.
cellPadding int Sets the amount of padding to be added around all cells.
cellSpacing int Sets the amount of spacing to be added around all cells.
onClick Method Called when a native click event is fired.

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

A widget that serves as an “internal” hyperlink. That is, it is a link to another state of the running application. When clicked, it will create a new history frame using com.google.gwt.user.client.History#newItem, but without reloading the page.

If you want an HTML hyperlink (<a> tag) without interacting with the history system, use Anchor instead.

Being a true hyperlink, it is also possible for the user to “right-click, open link in new window”, which will cause the application to be loaded in a new window at the state specified by the hyperlink.

Attributes

Name Type Description
Method Called when a native click event is fired.
String Sets the history token referenced by this hyperlink. This is the history token that will be passed to History#newItem when this link is clicked.

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

label

A widget that contains arbitrary text, not interpreted as HTML. This widget uses a <div> element, causing it to be displayed with block layout.

Attributes

Name Type Description
onClick Method Called when a native click event is fired.
onMouseDown Method Called when MouseDown is fired.
onMouseMove Method Called when MouseMoveEvent is fired.
onMouseOut Method Called when MouseOutEvent is fired.
onMouseOver Method Called when MouseOverEvent is fired.
onMouseUp Method Called when MouseUpEvent is fired.
onMouseWheel Method Called when MouseWheelEvent is fired.
pattern String Pattern used to format numeric/date

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

listBox

A widget that presents a list of choices to the user, either as a list box or as a drop-down list.

Attributes

Name Type Description
multipleSelect boolean Sets whether this list allows multiple selections. NOTE: The preferred way of enabling multiple selections in a list box is by using the #ListBox(boolean) constructor. Using this method can spuriously fail on Internet Explorer 6.0.
onChange Method Called when a change event is fired.
selectedIndex int Sets the currently selected index. After calling this method, only the specified item in the list will remain selected. For a ListBox with multiple selection enabled, see #setItemSelected(int, boolean) to select multiple items at a time.

Note that setting the selected index programmatically does not cause the ChangeHandler#onChange(ChangeEvent) event to be fired.

values Collection Collection of values to in this ListBox
visibleItemCount int Sets the number of items that are visible. If only one item is visible, then the box will be displayed as a drop-down list.

Attributes inherited from focusWidget

enabled, onBlur, onClick, onFocus, onKeyDown, onKeyPress, onKeyUp, onMouseDown, onMouseMove, onMouseOut, onMouseOver, onMouseUp, onMouseWheel

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

A standard menu bar widget. A menu bar can contain any number of menu items, each of which can either fire a com.google.gwt.user.client.Command or open a cascaded menu bar.

Attributes

Name Type Description
boolean Sets whether this menu bar’s child menus will open when the mouse is moved over it.
Method Called when CloseEvent is fired.
boolean Whether this MenuBar is vertical or horizontal.

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

An entry in a MenuBar. Menu items can either fire a com.google.gwt.user.client.Command when they are clicked, or open a cascading sub-menu. Each menu item is assigned a unique DOM id in order to support ARIA. See Accessibility for more information.

Attributes

Name Type Description
Command Sets the command associated with this item.
MenuBar Sets the sub-menu associated with this item.

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

A separator that can be placed in a MenuBar.

Attributes

(None)

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

panel (abstract)

Abstract base class for all panels, which are widgets that can contain other widgets.

Attributes

(None)

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

passwordTextBox

A text box that visually masks its input to prevent eavesdropping.

Attributes

(None)

Attributes inherited from textBox

maxLength, pattern, validator, visibleLength

Attributes inherited from textBoxBase

cursorPos, key, onChange, readOnly, text, textAlignment

Attributes inherited from focusWidget

enabled, onBlur, onClick, onFocus, onKeyDown, onKeyPress, onKeyUp, onMouseDown, onMouseMove, onMouseOut, onMouseOver, onMouseUp, onMouseWheel

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

radioButton

A mutually-exclusive selection radio button widget. Fires com.google.gwt.event.dom.client.ClickEvent s when the radio button is clicked, and ValueChangeEvent s when the button becomes checked. Note, however, that browser limitations prevent ValueChangeEvents from being sent when the radio button is cleared as a side effect of another in the group being clicked.

Attributes

Name Type Description
name String Change the group name of this radio button. Radio buttons are grouped by their name attribute, so changing their name using the setName() method will also change their associated group. If changing this group name results in a new radio group with multiple radio buttons selected, this radio button will remain selected and the other radio buttons will be unselected.

Attributes inherited from checkBox

checked, formValue, value

Attributes inherited from focusWidget

enabled, onBlur, onClick, onFocus, onKeyDown, onKeyPress, onKeyUp, onMouseDown, onMouseMove, onMouseOut, onMouseOver, onMouseUp, onMouseWheel

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

scrollPanel

A simple panel that wraps its contents in a scrollable area.

Attributes

Name Type Description
alwaysShowScrollBars boolean Sets whether this panel always shows its scroll bars, or only when necessary.
height String Sets the object’s height. This height does not include decorations such as border, margin, and padding.
horizontalScrollPosition int Sets the horizontal scroll position.
onScroll Method Called when ScrollEvent is fired.
scrollPosition int Sets the vertical scroll position.
width String Sets the object’s width. This width does not include decorations such as border, margin, and padding.

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

simplePanel

Base class for panels that contain only one widget.

Attributes

(None)

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

splitPanel (abstract)

Abstract base class for HorizontalSplitPanel and VerticalSplitPanel.

Attributes

Name Type Description
splitPosition String Moves the position of the splitter.

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

tab

Attributes

Name Type Description
tabText String Text displayed in tab bar

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

tabPanel

A panel that represents a tabbed set of pages, each of which contains another widget. Its child widgets are shown as the user selects the various tabs associated with them. The tabs can contain arbitrary HTML.

Attributes

Name Type Description
onBeforeSelection Method Called when BeforeSelectionEvent is fired.
onSelection Method Called when SelectionEvent is fired.

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

tableCell

Attributes

Name Type Description
col int Column number in table
colSpan int Column span
columnWidth String Table column width
horizontalAlignment String Horizontal alignment. Valid values: ALIGN_DEFAULT, ALIGN_CENTER, ALIGN_LEFT, ALIGN_RIGHT
row int Row number in table
rowSpan int Row span
verticalAlignment String Vertical alignment, Valid values: ALIGN_TOP, ALIGN_MIDDLE, ALIGN_BOTTOM
wordWrap boolean Word wrap

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

textArea

A text box that allows multiple lines of text to be entered.

Attributes

Name Type Description
characterWidth int Sets the requested width of the text box (this is not an exact value, as not all characters are created equal).
visibleLines int Sets the number of text lines that are visible.

Attributes inherited from textBoxBase

cursorPos, key, onChange, readOnly, text, textAlignment

Attributes inherited from focusWidget

enabled, onBlur, onClick, onFocus, onKeyDown, onKeyPress, onKeyUp, onMouseDown, onMouseMove, onMouseOut, onMouseOver, onMouseUp, onMouseWheel

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

textBox

A standard single-line text box.

Attributes

Name Type Description
maxLength int Sets the maximum allowable length of the text box.
pattern String Pattern used in conversion between numeric/date and String
validator IValidator The validator to validate user input.
visibleLength int Sets the number of visible characters in the text box.

Attributes inherited from textBoxBase

cursorPos, key, onChange, readOnly, text, textAlignment

Attributes inherited from focusWidget

enabled, onBlur, onClick, onFocus, onKeyDown, onKeyPress, onKeyUp, onMouseDown, onMouseMove, onMouseOut, onMouseOver, onMouseUp, onMouseWheel

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

textBoxBase (abstract)

Abstract base class for all text entry widgets.

Attributes

Name Type Description
cursorPos int Sets the cursor position. This will only work when the widget is attached to the document and not hidden.
key char If a keyboard event is currently being handled by the text box, this method replaces the unicode character or key code associated with it. This allows listeners to easily filter keyboard input.
onChange Method Called when a change event is fired.
readOnly boolean Turns read-only mode on or off.
text String Sets this object’s text. Note that some browsers will manipulate the text before adding it to the widget. For example, most browsers will strip all \r from the text, except IE which will add a \r before each \n. Use #getText() to get the text directly from the widget.
textAlignment TextAlignConstant Sets the alignment of the text in the text box.

Attributes inherited from focusWidget

enabled, onBlur, onClick, onFocus, onKeyDown, onKeyPress, onKeyUp, onMouseDown, onMouseMove, onMouseOut, onMouseOver, onMouseUp, onMouseWheel

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

uiObject (abstract)

The superclass for all user-interface objects. It simply wraps a DOM element, and cannot receive events. Most interesting user-interface classes derive from Widget.

Attributes

Name Type Description
addStyleDependentNames String Additional dependent style names separated by comma
addStyleNames String Additional style names separated by comma
height String Sets the object’s height. This height does not include decorations such as border, margin, and padding.
j_name String Java variable name, used to get the UI object by its name
styleName String Clears all of the object’s style names and sets it to the given style. You should normally use #setStylePrimaryName(String) unless you wish to explicitly remove all existing styles.
stylePrimaryName String Sets the object’s primary style name and updates all dependent style names.
title String Sets the title associated with this object. The title is the ‘tool-tip’ displayed to users when they hover over the object.
visible boolean Sets whether this object is visible.
width String Sets the object’s width. This width does not include decorations such as border, margin, and padding.



verticalPanel

A panel that lays all of its widgets out in a single vertical column.

Attributes

Name Type Description
horizontalAlignment HorizontalAlignmentConstant Sets the default horizontal alignment to be used for widgets added to this panel. It only applies to widgets added after this property is set.
verticalAlignment VerticalAlignmentConstant Sets the default vertical alignment to be used for widgets added to this panel. It only applies to widgets added after this property is set.

Attributes inherited from cellPanel

borderWidth, spacing

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

verticalSplitPanel

A panel that arranges two widgets in a single vertical column and allows the user to interactively change the proportion of the height dedicated to each of the two widgets. Widgets contained within a VerticalSplitterPanel will be automatically decorated with scrollbars when necessary.

Attributes

Name Type Description
bottomWidget Widget Sets the widget in the bottom of the panel.
topWidget Widget Sets the widget in the top of the panel.

Attributes inherited from splitPanel

splitPosition

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

widget (abstract)

The base class for the majority of user-interface objects. Widget adds support for receiving events from the browser and being added directly to Panel panels.

Attributes

(None)

Attributes inherited from uiObject

addStyleDependentNames, addStyleNames, height, j_name, styleName, stylePrimaryName, title, visible, width

Share and Enjoy:

  • Google Bookmarks
  • Twitter
  • Facebook
  • Digg
  • Technorati
  • Live
  • DZone
  • Reddit
  • del.icio.us
  • Mixx
  • Netvibes
  • StumbleUpon
  • Yahoo! Bookmarks
  • Yahoo! Buzz
  • email


Recent Comments:

  • Colin: @Piotr Szaranski: I had the same issue with authentication, and I also was looking for...
  • Ora Finona: This is a bit off discussion, which I apologize for, but would you and your readers...
  • Amos: First, thanks for some great software. This is great to have. Here are collection of notes...
  • Peter Frankmann: Hallo zusammen, Sehr gute Beiträge. Danke dafür. Werde wohl noch öfters mal...
  • Trung: SyncProxy depends in gdata java client, thus download it from code.google.com Hope this...