Codota Logo
Messages
Code IndexAdd Codota to your IDE (free)

How to use
Messages
in
org.opencms.workplace.comparison

Best Java code snippets using org.opencms.workplace.comparison.Messages (Showing top 20 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Point p =
  • Codota Iconnew Point(x, y)
  • Codota Iconnew Point()
  • Codota IconMouseEvent e;e.getPoint()
  • Smart code suggestions by Codota
}
origin: org.opencms/org.opencms.workplace

/**
 * Protected constructor.<p>
 *
 * @param listId the id of the specialized list
 * @param jsp an initialized JSP action element
 */
protected CmsElementComparisonList(String listId, CmsJspActionElement jsp) {
  super(
    jsp,
    listId,
    Messages.get().container(Messages.GUI_COMPARE_CONTENT_0),
    LIST_COLUMN_LOCALE,
    CmsListOrderEnum.ORDER_ASCENDING,
    null);
}
origin: org.opencms/opencms-solr

/**
 * Protected constructor.<p>
 * 
 * @param listId the id of the specialized list
 * @param jsp an initialized JSP action element
 */
protected CmsElementComparisonList(String listId, CmsJspActionElement jsp) {
  super(
    jsp,
    listId,
    Messages.get().container(Messages.GUI_COMPARE_CONTENT_0),
    LIST_COLUMN_LOCALE,
    CmsListOrderEnum.ORDER_ASCENDING,
    null);
}
origin: org.opencms/opencms-solr

/**
 * Protected constructor.<p>
 * 
 * @param listId the id of the specialized list
 * @param jsp an initialized JSP action element
 */
protected CmsAttributeComparisonList(String listId, CmsJspActionElement jsp) {
  super(
    jsp,
    listId,
    Messages.get().container(Messages.GUI_COMPARE_ATTRIBUTES_0),
    LIST_COLUMN_PROPERTY_NAME,
    CmsListOrderEnum.ORDER_ASCENDING,
    null);
}
origin: org.opencms/org.opencms.workplace

/**
 * Protected constructor.<p>
 *
 * @param listId the id of the specialized list
 * @param jsp an initialized JSP action element
 */
protected CmsAttributeComparisonList(String listId, CmsJspActionElement jsp) {
  super(
    jsp,
    listId,
    Messages.get().container(Messages.GUI_COMPARE_ATTRIBUTES_0),
    LIST_COLUMN_PROPERTY_NAME,
    CmsListOrderEnum.ORDER_ASCENDING,
    null);
}
origin: org.opencms/org.opencms.workplace

/**
 * Protected constructor.<p>
 *
 * @param listId the id of the specialized list
 * @param jsp an initialized JSP action element
 */
protected CmsPropertyComparisonList(String listId, CmsJspActionElement jsp) {
  super(
    jsp,
    listId,
    Messages.get().container(Messages.GUI_COMPARE_PROPERTIES_0),
    LIST_COLUMN_PROPERTY_NAME,
    CmsListOrderEnum.ORDER_ASCENDING,
    null);
}
origin: org.opencms/opencms-solr

/**
 * Protected constructor.<p>
 * 
 * @param listId the id of the specialized list
 * @param jsp an initialized JSP action element
 */
protected CmsPropertyComparisonList(String listId, CmsJspActionElement jsp) {
  super(
    jsp,
    listId,
    Messages.get().container(Messages.GUI_COMPARE_PROPERTIES_0),
    LIST_COLUMN_PROPERTY_NAME,
    CmsListOrderEnum.ORDER_ASCENDING,
    null);
}
origin: org.opencms/org.opencms.workplace

/**
 *
 * @see org.opencms.workplace.list.A_CmsListDialog#setIndependentActions(org.opencms.workplace.list.CmsListMetadata)
 */
@Override
protected void setIndependentActions(CmsListMetadata metadata) {
  // add event details
  CmsListItemDetails eventDetails = new CmsListItemDetails(LIST_IACTION_SHOW);
  eventDetails.setVisible(false);
  eventDetails.setShowActionName(Messages.get().container(Messages.GUI_COMPARE_SHOW_ALL_PROPERTIES_0));
  eventDetails.setHideActionName(Messages.get().container(Messages.GUI_COMPARE_HIDE_IDENTICAL_PROPERTIES_0));
  metadata.addItemDetails(eventDetails);
}
origin: org.opencms/opencms-solr

/**
 * 
 * @see org.opencms.workplace.list.A_CmsListDialog#setIndependentActions(org.opencms.workplace.list.CmsListMetadata)
 */
@Override
protected void setIndependentActions(CmsListMetadata metadata) {
  // add event details
  CmsListItemDetails eventDetails = new CmsListItemDetails(LIST_IACTION_SHOW);
  eventDetails.setVisible(false);
  eventDetails.setShowActionName(Messages.get().container(Messages.GUI_COMPARE_SHOW_ALL_PROPERTIES_0));
  eventDetails.setHideActionName(Messages.get().container(Messages.GUI_COMPARE_HIDE_IDENTICAL_PROPERTIES_0));
  metadata.addItemDetails(eventDetails);
}
origin: org.opencms/opencms-core

  /**
   * Creates a new configuration object.<p>
   *
   * @param lines the lines to show before skipping
   * @param locale the locale to use
   */
  public CmsHtmlDifferenceConfiguration(int lines, Locale locale) {

    super(new DiffConfiguration(lines, Messages.get().getBundleName(), Messages.GUI_DIFF_SKIP_LINES_1, locale));
    setDivStyleNames("df-unc", "df-add", "df-rem", "df-skp");
    setSpanStyleNames("df-unc", "df-add", "df-rem");
  }
}
origin: org.opencms/opencms-solr

  /**
   * Creates a new configuration object.<p> 
   * 
   * @param lines the lines to show before skipping
   * @param locale the locale to use
   */
  public CmsHtmlDifferenceConfiguration(int lines, Locale locale) {

    super(new DiffConfiguration(lines, Messages.get().getBundleName(), Messages.GUI_DIFF_SKIP_LINES_1, locale));
    setDivStyleNames("df-unc", "df-add", "df-rem", "df-skp");
    setSpanStyleNames("df-unc", "df-add", "df-rem");
  }
}
origin: org.opencms/org.opencms.workplace

/**
 * @see org.opencms.workplace.list.A_CmsListDialog#setIndependentActions(org.opencms.workplace.list.CmsListMetadata)
 */
@Override
protected void setIndependentActions(CmsListMetadata metadata) {
  CmsListIndependentAction compare = new CmsListIndependentAction(LIST_IACTION_COMPARE_ALL);
  compare.setName(Messages.get().container(Messages.GUI_COMPARE_COMPARE_ALL_0));
  compare.setIconPath("tools/ex_history/buttons/compare.png");
  compare.setEnabled(true);
  metadata.addIndependentAction(compare);
  // add event details
  CmsListItemDetails eventDetails = new CmsListItemDetails(LIST_IACTION_SHOW);
  eventDetails.setVisible(false);
  eventDetails.setShowActionName(Messages.get().container(Messages.GUI_COMPARE_SHOW_ALL_ELEMENTS_0));
  eventDetails.setHideActionName(Messages.get().container(Messages.GUI_COMPARE_HIDE_IDENTICAL_ELEMENTS_0));
  metadata.addItemDetails(eventDetails);
}
origin: org.opencms/opencms-solr

/**
 * @see org.opencms.workplace.list.A_CmsListDialog#setIndependentActions(org.opencms.workplace.list.CmsListMetadata)
 */
@Override
protected void setIndependentActions(CmsListMetadata metadata) {
  CmsListIndependentAction compare = new CmsListIndependentAction(LIST_IACTION_COMPARE_ALL);
  compare.setName(Messages.get().container(Messages.GUI_COMPARE_COMPARE_ALL_0));
  compare.setIconPath("tools/ex_history/buttons/compare.png");
  compare.setEnabled(true);
  metadata.addIndependentAction(compare);
  // add event details
  CmsListItemDetails eventDetails = new CmsListItemDetails(LIST_IACTION_SHOW);
  eventDetails.setVisible(false);
  eventDetails.setShowActionName(Messages.get().container(Messages.GUI_COMPARE_SHOW_ALL_ELEMENTS_0));
  eventDetails.setHideActionName(Messages.get().container(Messages.GUI_COMPARE_HIDE_IDENTICAL_ELEMENTS_0));
  metadata.addItemDetails(eventDetails);
}
origin: org.opencms/opencms-solr

String label = Messages.get().container(
  Messages.GUI_COMPARE_VIEW_VERSION_1,
  CmsHistoryList.getDisplayVersion(version, getLocale())).key(getLocale());
origin: org.opencms/org.opencms.workplace

eventDetails.setShowActionName(Messages.get().container(Messages.GUI_COMPARE_SHOW_ALL_ATTRIBUTES_0));
eventDetails.setHideActionName(Messages.get().container(Messages.GUI_COMPARE_HIDE_IDENTICAL_ATTRIBUTES_0));
metadata.addItemDetails(eventDetails);
origin: org.opencms/opencms-solr

eventDetails.setShowActionName(Messages.get().container(Messages.GUI_COMPARE_SHOW_ALL_ATTRIBUTES_0));
eventDetails.setHideActionName(Messages.get().container(Messages.GUI_COMPARE_HIDE_IDENTICAL_ATTRIBUTES_0));
metadata.addItemDetails(eventDetails);
origin: org.opencms/org.opencms.workplace

String label = Messages.get().container(
  Messages.GUI_COMPARE_VIEW_VERSION_1,
  CmsHistoryListUtil.getDisplayVersion(version, getLocale())).key(getLocale());
origin: org.opencms/opencms-solr

iconCol.setName(Messages.get().container(Messages.GUI_COMPARE_COLS_ICON_0));
iconCol.setWidth("20");
iconCol.setAlign(CmsListColumnAlignEnum.ALIGN_CENTER);
addedAction.setName(Messages.get().container(Messages.GUI_COMPARE_ELEM_ADDED_0));
addedAction.setIconPath("tools/ex_history/buttons/added.png");
addedAction.setEnabled(true);
removedAction.setName(Messages.get().container(Messages.GUI_COMPARE_ELEM_REMOVED_0));
removedAction.setIconPath("tools/ex_history/buttons/removed.png");
removedAction.setEnabled(true);
changedAction.setName(Messages.get().container(Messages.GUI_COMPARE_ELEM_CHANGED_0));
changedAction.setIconPath("tools/ex_history/buttons/changed.png");
changedAction.setEnabled(true);
unchangedAction.setName(Messages.get().container(Messages.GUI_COMPARE_ELEM_UNCHANGED_0));
unchangedAction.setIconPath("tools/ex_history/buttons/unchanged.png");
unchangedAction.setEnabled(true);
statusCol.setName(Messages.get().container(Messages.GUI_COMPARE_COLS_STATUS_0));
statusCol.setWidth("10%");
statusColAction.setName(Messages.get().container(Messages.GUI_COMPARE_COLS_STATUS_0));
statusColAction.setEnabled(true);
statusCol.addDefaultAction(statusColAction);
localeCol.setName(Messages.get().container(Messages.GUI_COMPARE_COLS_LOCALE_0));
localeCol.setWidth("10%");
origin: org.opencms/opencms-solr

  Messages.get().container(
    Messages.GUI_COMPARE_VERSION_1,
    CmsHistoryList.getDisplayVersion(getParamVersion1(), getLocale())));
getList().getMetadata().getColumnDefinition(LIST_COLUMN_VERSION_2).setName(
  Messages.get().container(
    Messages.GUI_COMPARE_VERSION_1,
    CmsHistoryList.getDisplayVersion(getParamVersion2(), getLocale())));
origin: org.opencms/opencms-solr

iconCol.setName(Messages.get().container(Messages.GUI_COMPARE_COLS_ICON_0));
iconCol.setWidth("20");
iconCol.setAlign(CmsListColumnAlignEnum.ALIGN_CENTER);
addedAction.setName(Messages.get().container(Messages.GUI_COMPARE_ELEM_ADDED_0));
addedAction.setIconPath("tools/ex_history/buttons/added.png");
addedAction.setEnabled(true);
removedAction.setName(Messages.get().container(Messages.GUI_COMPARE_ELEM_REMOVED_0));
removedAction.setIconPath("tools/ex_history/buttons/removed.png");
removedAction.setEnabled(true);
changedAction.setName(Messages.get().container(Messages.GUI_COMPARE_ELEM_CHANGED_0));
changedAction.setIconPath("tools/ex_history/buttons/changed.png");
changedAction.setEnabled(true);
unchangedAction.setName(Messages.get().container(Messages.GUI_COMPARE_ELEM_UNCHANGED_0));
unchangedAction.setIconPath("tools/ex_history/buttons/unchanged.png");
unchangedAction.setEnabled(true);
typeCol.setName(Messages.get().container(Messages.GUI_COMPARE_COLS_STATUS_0));
typeCol.setWidth("10%");
CmsListDefaultAction typeColAction = new CmsListDefaultAction(CmsElementComparisonList.LIST_ACTION_STATUS);
typeColAction.setName(Messages.get().container(Messages.GUI_COMPARE_COLS_STATUS_0));
typeColAction.setEnabled(true);
nameCol.setName(Messages.get().container(Messages.GUI_COMPARE_COLS_PROPERTY_NAME_0));
nameCol.setWidth("20%");
metadata.addColumn(nameCol);
origin: org.opencms/org.opencms.workplace

iconCol.setName(Messages.get().container(Messages.GUI_COMPARE_COLS_ICON_0));
iconCol.setWidth("20");
iconCol.setAlign(CmsListColumnAlignEnum.ALIGN_CENTER);
addedAction.setName(Messages.get().container(Messages.GUI_COMPARE_ELEM_ADDED_0));
addedAction.setIconPath("tools/ex_history/buttons/added.png");
addedAction.setEnabled(true);
removedAction.setName(Messages.get().container(Messages.GUI_COMPARE_ELEM_REMOVED_0));
removedAction.setIconPath("tools/ex_history/buttons/removed.png");
removedAction.setEnabled(true);
changedAction.setName(Messages.get().container(Messages.GUI_COMPARE_ELEM_CHANGED_0));
changedAction.setIconPath("tools/ex_history/buttons/changed.png");
changedAction.setEnabled(true);
unchangedAction.setName(Messages.get().container(Messages.GUI_COMPARE_ELEM_UNCHANGED_0));
unchangedAction.setIconPath("tools/ex_history/buttons/unchanged.png");
unchangedAction.setEnabled(true);
statusCol.setName(Messages.get().container(Messages.GUI_COMPARE_COLS_STATUS_0));
statusCol.setWidth("10%");
statusColAction.setName(Messages.get().container(Messages.GUI_COMPARE_COLS_STATUS_0));
statusColAction.setEnabled(true);
statusCol.addDefaultAction(statusColAction);
localeCol.setName(Messages.get().container(Messages.GUI_COMPARE_COLS_LOCALE_0));
localeCol.setWidth("10%");
org.opencms.workplace.comparisonMessages

Javadoc

Convenience class to access the localized messages of this OpenCms package.

Most used methods

  • get
    Returns an instance of this localized message accessor.

Popular in Java

  • Making http requests using okhttp
  • addToBackStack (FragmentTransaction)
  • getSupportFragmentManager (FragmentActivity)
    Return the FragmentManager for interacting with fragments associated with this activity.
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • MalformedURLException (java.net)
    Thrown to indicate that a malformed URL has occurred. Either no legal protocol could be found in a s
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • Notification (javax.management)
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now