Java tutorial
/* Copyright (C) 2013 NTT DATA Corporation This program is free software; you can redistribute it and/or Modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. */ package com.clustercontrol.calendar.composite; import java.util.ArrayList; import java.util.Iterator; import org.eclipse.jface.dialogs.IDialogConstants; import org.eclipse.jface.dialogs.MessageDialog; import org.eclipse.swt.SWT; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Shell; import org.eclipse.ui.PlatformUI; import com.clustercontrol.calendar.dialog.CalendarDetailDialog; import com.clustercontrol.dialog.ValidateResult; import com.clustercontrol.util.Messages; import com.clustercontrol.util.WidgetTestUtil; import com.clustercontrol.ws.calendar.CalendarDetailInfo; /** * ??<BR> * <p> * <dl> * <dt>?</dt> * <dd>???</dd> * <dd>?</dd> * <dd>?</dd> * <dd>?</dd> * <dd>?</dd> * <dd>?</dd> * <dd>??</dd> * <dd>??</dd> * <dd>??</dd> * <dd>??? </dd> * </dl> * * @version 4.1.0 * @since 4.1.0 */ public class CalendarDetailInfoComposite extends Composite { /** ? */ private CalendarDetailListComposite calInfoListComposite = null; /** */ private Button calDetailInfoAddButton = null; /** */ private Button calDetailInfoModifyButton = null; /** */ private Button calDetailInfoDeleteButton = null; /** */ private Button calDetailInfoCopyButton = null; /** ? */ private Button calDetailInfoUpButton = null; /** ? */ private Button calDetailInfoDownButton = null; /** ??? */ private String managerName = null; /** * ??? * <p> * ?????????? * * @param parent ?? * @param style * @param managerName ??? * @param tableDefine ?{@link com.clustercontrol.bean.TableColumnInfo}? * * @see org.eclipse.swt.SWT * @see org.eclipse.swt.widgets.Composite#Composite(Composite parent, int style) * @see com.clustercontrol.bean.TableColumnInfo#TableColumnInfo(java.lang.String, int, int, int) * @see com.clustercontrol.monitor.run.action.GetStringFilterTableDefine * @see #initialize(ArrayList) */ public CalendarDetailInfoComposite(Composite parent, int style, String managerName) { super(parent, style); this.managerName = managerName; this.initialize(); } /** * ????? */ private void initialize() { // ???? GridData gridData = null; GridLayout layout = new GridLayout(1, true); layout.marginHeight = 0; layout.marginWidth = 0; layout.numColumns = 15; this.setLayout(layout); /* * */ this.calInfoListComposite = new CalendarDetailListComposite(this, SWT.BORDER, this.managerName); WidgetTestUtil.setTestId(this, "list", calInfoListComposite); gridData = new GridData(); gridData.horizontalAlignment = GridData.FILL; gridData.verticalAlignment = GridData.FILL; gridData.grabExcessHorizontalSpace = true; gridData.grabExcessVerticalSpace = true; gridData.horizontalSpan = 13; this.calInfoListComposite.setLayoutData(gridData); /* * ? */ Composite calDetailInfoButtonComposite = new Composite(this, SWT.NONE); WidgetTestUtil.setTestId(this, "button", calDetailInfoButtonComposite); layout = new GridLayout(1, true); layout.numColumns = 1; calDetailInfoButtonComposite.setLayout(layout); gridData = new GridData(); gridData.horizontalAlignment = GridData.FILL; gridData.verticalAlignment = GridData.FILL; gridData.grabExcessHorizontalSpace = true; gridData.grabExcessVerticalSpace = true; gridData.horizontalSpan = 2; calDetailInfoButtonComposite.setLayoutData(gridData); // this.calDetailInfoAddButton = this.createButton(calDetailInfoButtonComposite, Messages.getString("add")); WidgetTestUtil.setTestId(this, "add", calDetailInfoAddButton); this.calDetailInfoAddButton.addSelectionListener(new SelectionAdapter() { @Override public void widgetSelected(SelectionEvent e) { // ? Shell shell = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(); //FIXME //CalendarDetailDialog dialog = new CalendarDetailDialog(shell, m_ownerRoleId); CalendarDetailDialog dialog = new CalendarDetailDialog(shell, calInfoListComposite.getManagerName(), calInfoListComposite.getOwnerRoleId()); if (dialog.open() == IDialogConstants.OK_ID) { calInfoListComposite.getDetailList().add(dialog.getInputData()); calInfoListComposite.update(); } } }); // this.calDetailInfoModifyButton = this.createButton(calDetailInfoButtonComposite, Messages.getString("modify")); WidgetTestUtil.setTestId(this, "modify", calDetailInfoModifyButton); this.calDetailInfoModifyButton.addSelectionListener(new SelectionAdapter() { @Override public void widgetSelected(SelectionEvent e) { Integer order = calInfoListComposite.getSelection(); if (order != null) { // ? Shell shell = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(); //FIXME //CalendarDetailDialog dialog = new CalendarDetailDialog(shell,m_infoListComposite.getDetailList().get(order - 1), m_ownerRoleId); CalendarDetailDialog dialog = new CalendarDetailDialog(shell, calInfoListComposite.getManagerName(), calInfoListComposite.getDetailList().get(order - 1), calInfoListComposite.getOwnerRoleId()); if (dialog.open() == IDialogConstants.OK_ID) { calInfoListComposite.getDetailList() .remove(calInfoListComposite.getDetailList().get(order - 1)); calInfoListComposite.getDetailList().add(order - 1, dialog.getInputData()); calInfoListComposite.setSelection(); } } else { MessageDialog.openWarning(null, Messages.getString("warning"), Messages.getString("message.monitor.30")); } } }); // this.calDetailInfoDeleteButton = this.createButton(calDetailInfoButtonComposite, Messages.getString("delete")); WidgetTestUtil.setTestId(this, "delete", calDetailInfoDeleteButton); this.calDetailInfoDeleteButton.addSelectionListener(new SelectionAdapter() { @Override public void widgetSelected(SelectionEvent e) { Integer order = calInfoListComposite.getSelection(); if (order != null) { calInfoListComposite.getDetailList().remove(order - 1); calInfoListComposite.update(); } else { MessageDialog.openWarning(null, Messages.getString("warning"), Messages.getString("message.monitor.30")); } } }); // this.calDetailInfoCopyButton = this.createButton(calDetailInfoButtonComposite, Messages.getString("copy")); WidgetTestUtil.setTestId(this, "copy", calDetailInfoCopyButton); this.calDetailInfoCopyButton.addSelectionListener(new SelectionAdapter() { @Override public void widgetSelected(SelectionEvent e) { Integer order = calInfoListComposite.getSelection(); if (order != null) { // ? Shell shell = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(); CalendarDetailDialog dialog = new CalendarDetailDialog(shell, calInfoListComposite.getManagerName(), calInfoListComposite.getDetailList().get(order - 1), calInfoListComposite.getOwnerRoleId()); if (dialog.open() == IDialogConstants.OK_ID) { calInfoListComposite.getDetailList().add(dialog.getInputData()); calInfoListComposite.setSelection(); } } else { MessageDialog.openWarning(null, Messages.getString("warning"), Messages.getString("message.monitor.30")); } } }); // ? this.calDetailInfoUpButton = this.createButton(calDetailInfoButtonComposite, Messages.getString("up")); WidgetTestUtil.setTestId(this, "up", calDetailInfoUpButton); this.calDetailInfoUpButton.addSelectionListener(new SelectionAdapter() { @Override public void widgetSelected(SelectionEvent e) { Integer order = calInfoListComposite.getSelection(); if (order != null) { calInfoListComposite.up(); calInfoListComposite.update(); } else { MessageDialog.openWarning(null, Messages.getString("warning"), Messages.getString("message.monitor.30")); } } }); // ? this.calDetailInfoDownButton = this.createButton(calDetailInfoButtonComposite, Messages.getString("down")); WidgetTestUtil.setTestId(this, "down", calDetailInfoDownButton); this.calDetailInfoDownButton.addSelectionListener(new SelectionAdapter() { @Override public void widgetSelected(SelectionEvent e) { Integer order = calInfoListComposite.getSelection(); if (order != null) { calInfoListComposite.down(); calInfoListComposite.update(); } else { MessageDialog.openWarning(null, Messages.getString("warning"), Messages.getString("message.monitor.30")); } } }); } /** * * @return */ public ArrayList<CalendarDetailInfo> getDetailList() { return this.calInfoListComposite.getDetailList(); } /** * ?????? * @param detailList */ public void setDetailList(ArrayList<CalendarDetailInfo> detailList) { if (detailList != null) { this.calInfoListComposite.setDetailList(detailList); } this.update(); } /* (? Javadoc) * @see org.eclipse.swt.widgets.Control#setEnabled(boolean) */ @Override public void setEnabled(boolean enabled) { this.calInfoListComposite.setEnabled(enabled); this.calDetailInfoAddButton.setEnabled(enabled); this.calDetailInfoModifyButton.setEnabled(enabled); this.calDetailInfoDeleteButton.setEnabled(enabled); this.calDetailInfoUpButton.setEnabled(enabled); this.calDetailInfoDownButton.setEnabled(enabled); } /** * ??? * * @param parent ?? * @param label ?? * @return */ private Button createButton(Composite parent, String label) { Button calDetailInfoCommonButton = new Button(parent, SWT.NONE); WidgetTestUtil.setTestId(this, null, calDetailInfoCommonButton); GridData gridData = new GridData(); gridData.horizontalAlignment = GridData.FILL; gridData.grabExcessHorizontalSpace = true; calDetailInfoCommonButton.setLayoutData(gridData); calDetailInfoCommonButton.setText(label); return calDetailInfoCommonButton; } /** * ????? * * @param id ID * @param message * @return ?? */ protected ValidateResult setValidateResult(String id, String message) { ValidateResult validateResult = new ValidateResult(); validateResult.setValid(false); validateResult.setID(id); validateResult.setMessage(message); return validateResult; } public void setOwnerRoleId(String ownerRoleId) { this.calInfoListComposite.setOwnerRoleId(ownerRoleId); //this.m_ownerRoleId = ownerRoleId; } public void changeOwnerRoleId(String ownerRoleId) { //if (ownerRoleId == null // || !ownerRoleId.equals(this.m_ownerRoleId)) { if (ownerRoleId == null || !ownerRoleId.equals(this.calInfoListComposite.getOwnerRoleId())) { //Iterator<CalendarDetailInfo> iter = m_info.getCalendarDetailList().iterator(); Iterator<CalendarDetailInfo> iter = calInfoListComposite.getDetailList().iterator(); while (iter.hasNext()) { CalendarDetailInfo composite = iter.next(); composite.setCalPatternId(null); composite.setCalPatternInfo(null); } this.calInfoListComposite.update(); } setOwnerRoleId(ownerRoleId); } public void setManagerName(String managerName) { this.calInfoListComposite.setManagerName(managerName); } public void changeManagerName(String managerName, boolean clear) { if (managerName == null || !managerName.equals(this.calInfoListComposite.getManagerName())) { Iterator<CalendarDetailInfo> iter = calInfoListComposite.getDetailList().iterator(); while (iter.hasNext() && clear) { CalendarDetailInfo composite = iter.next(); composite.setCalPatternId(null); composite.setCalPatternInfo(null); } this.calInfoListComposite.update(); } setManagerName(managerName); } }