in src/main/java/org/apache/cayenne/modeler/layout/MainToolBarLayout.java [95:112]
private void setToolTips()
{
newButton.setTooltip(new Tooltip("Create a new Cayenne Model project."));
openButton.setTooltip(new Tooltip("Open an existing Cayenne Model project."));
saveButton.setTooltip(new Tooltip("Save this Cayenne Model project."));
removeButton.setTooltip(new Tooltip("Remove this item.")); // FIXME: Should be dynamic.
cutButton.setTooltip(new Tooltip("Cut this item to the clipboard.")); // FIXME: Should be dynamic.
copyButton.setTooltip(new Tooltip("Copy this item to the clipboard.")); // FIXME: Should be dynamic.
pasteButton.setTooltip(new Tooltip("Paste this item from the clipboard.")); // FIXME: Should be dynamic.
undoButton.setTooltip(new Tooltip("Undo.")); // FIXME: Should be dynamic.
redoButton.setTooltip(new Tooltip("Redo.")); // FIXME: Should be dynamic.
dataMapButton.setTooltip(new Tooltip("Create a new Data Map to hold Java and Database definitions."));
dataNodeButton.setTooltip(new Tooltip("Create a new Data Node to hold database connection settings."));
}