ad103 - have it your way: extending ibm lotus domino designer

25
AD103 Have It Your Way: Extending IBM Lotus® Domino® Designer Andre Guirard | Product Developer Xin Rang Wang ("Grace") | Software Engineer

Upload: ddrschiw

Post on 20-May-2015

2.226 views

Category:

Technology


3 download

DESCRIPTION

With release 8.5.1, the new Lotus Domino Designer Extension API supports custom extensions to operate on selections of design elements. We'll details several sample applications; 1) validate references to views, forms, etc in XPages and Custom controls, 2) re-factoring tool to rename a design element and update references, 3) synchronize files between NSF and local file system (stylesheets, etc) and 4) select a form, create view with all fields from the form. We'll provide boilerplate code for common types of plugins, so you can just add your own code. You'll see how to control whether your extension is visible/enabled based on selection contents - visit openntf.org for more! After attending this session, you can make your own contributions!

TRANSCRIPT

Page 1: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

AD103 Have It Your Way: Extending IBM Lotus® Domino® DesignerAndre Guirard | Product DeveloperXin Rang Wang ("Grace") | Software Engineer

Page 2: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

2

Agenda● Eclipse-based Domino® Designer Architecture

● What you will need

● The Designer Extensibility API

● Example applications

● Demonstration

● Q & A

Page 3: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

Extensibility in Domino Designer● Extend Domino Designer.

▬ Use Eclipse development skills to create plug-in in Java™.▬ Or, integrate existing Eclipse based plug-in▬ Create

● Publish your Designer plug-in to OpenNTF.org▬ Please!

● Or sell them for $$$

Page 4: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

Designer and Eclipse● Eclipse: Lotus rich client technology

Lotus Expeditor

Eclipse 3.4 Foundation

LotusNotes

Lotus Sametime

Lotus Expeditor (standalone)

Domino Designer

Page 5: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

What You Will Need● Eclipse 3.4 or later development environment (FREE!)● Eclipse plugin development skills● Domino Designer 8.5.1 or later

Page 6: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

Capabilities of Designer Extensibility API● Let custom plugins tell what's selected

▬ Which Notes application▬ Which design elements▬ (if no design elements) which navigator heading or design list▬ Whether a core editor window has focus

● Get / set basic properties (title, alias, template name, etc.)● Combine with Notes Java API (lotus.domino.*) and DXL, to manipulate

design elements in other ways.

Page 7: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

Other Things You Can Do Just Because it's Eclipse● Combine with Eclipse standard interfaces, listeners and extension points

to build onto the UI.▬ e.g. Register code to run when selection changes, or when something is saved.

● Get the project path of a database and open it on screen.● Get / set the “contents” of a file-based design element● Get / set DXL of other design elements● Open a design element for editing using its resource path● Add preference page to control the configuration of your new plugin● ... whatever else you know how to do with

Iresource/IFile/IProject/ViewPart/EditorPart.● Integration with other, non-Domino related plugins.● Etcetera

Page 8: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

Limitations of new API● Only gives access to subset of design element & database properties.

▬ Use lotus.domino.* classes, DXL for other properties.● Can’t detect selection in "core windows" below design element level

▬ E.g. can’t tell which column is selected while editing a view.▬ But you can tell you’re editing a view, and which one.

Page 9: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

Core Window● The "old style" design element editors

Page 10: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

Eclipse-based Editor● The newer design elements and new LotusScript editor

Page 11: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

11

Demo Use Cases● Selection tracker● Assign Comment on Multiple Design Elements

▬ etc...● Create View From Form● Refactor plugin for Domino Designer● References validation plugin for Domino Designer● Import/Export plugin for Domino Designer

Page 12: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

12

Extensibility API Classes/Interfaces● Class DesignerResource

▬ Static methods for working with Designer selections and objects● Interface DesignerDesignElementSelection

▬ The description of “what Domino- based elements are selected”.● Interface DesignerProject

▬ IProject object representing “Notes Database”● Interface DesignerDesignElement

▬ Object representing “Notes design element”● Class DesignerException

▬ Exception object for all problems using methods of DesignerDesignElement and DesignerProject● Property tester com.ibm.designer.domino.ui.commons.extensions.*

▬ What sort of thing is selected?

Page 13: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

Context Menu extension – Design Element

Page 14: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

Context Menu extension – Design Element

org.eclipse.ui.popupMenusorg.eclipse.core.resources.IFile

Page 15: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

Context Menu extension – Application

Page 16: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

Context Menu Extension – Application

org.eclipse.ui.popupMenusorg.eclipse.core.resources.IProject

Page 17: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

To Make Menu Appear (only) in Designer

<extension point="org.eclipse.ui.perspectiveExtensions"> <perspectiveExtension targetID="com.ibm.designer.domino.perspective"> <actionSet id="ID of your action set which is defined elsewhere"> </actionSet> </perspectiveExtension> </extension>

Page 18: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

Controlling Menu/Control Enablement● Enable when selection is anywhere in a Domino application:

▬ <enablement> <reference definitionId="com.ibm.designer.domino.ui.commons.extensions.designerProjectSelected" /></enablement>

● Enable when exactly one form is selected:▬ <enablement>

<with variable="selection"> <test property="com.ibm.designer.domino.ui.commons.extensions.numAndType" value="1,forms" /></with></enablement>

Page 19: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

19

com.ibm.designer.domino.ui.commons.extensionsDesignerResource

static DesignerDesignElement getDesignElement(IResource resource) Convert IResource to Notes design element.

static DesignerProject getDesignerProject(IProject project)

static DesignerDesignElementSelection

getDesignerSelection(ISelection selection)Returns object with info about everything Domino-related in current selection.

static IResource getResourceFromEditor(IEditorPart part)Answers the question “What design element am I editing here?”

static DesignerProject openDesignerProject(java.lang.String server, java.lang.String filepath)Kicks off a background process that adds a bookmark to the Notes application into Designer.

Page 20: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

20

com.ibm.designer.domino.ui.commons.extensionsInterface DesignerDesignElementSelection

java.lang.String getCategory()

int getDesignElementCount()

java.lang.String getDesignElementType()

java.util.List<DesignerDesignElement> getSelectedDesignElements()

DesignerProject getSelectedDesignerProject()

boolean isDominoProjectSelected()

Page 21: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

21

com.ibm.designer.domino.ui.commons.extensionsInterface DesignerProject

java.lang.String getDatabaseTitle() (also set!)

java.lang.String getServerName()

java.lang.String getDatabaseName() The filepath of the application.

java.lang.String getReplicaId()

void refresh() Update UI to reflect recent changes.

java.lang.String getInheritTemplateName() (also set!)Which template this application inherits its design from (null=none).

java.lang.String getMasterTemplateName() (also set!)If application is a template, "template name" by which other applications can inherit its design (null = none).

DesignerDesignElement getDesignElement(IPath path)To get an object to work with a design element even if it's not selected.

boolean isMultiLingual()

boolean isDesignHidden()

...

Page 22: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

22

com.ibm.designer.domino.ide.resources.extensions Interface DesignerDesignElement

java.lang.String getName() (also set!)

java.lang.String getAlias() (also set!)Multiple aliases delimited with “|”

java.lang.String getComment() (also set!) The filepath of the application.

java.lang.String getNoteId()

IResource getResource() boolean isProhibitRefresh() (also set!)

Whether design element protected from design refresh/replace.

java.lang.String getDesignElementTemplateName() (also set!)If design element inherits design individually from a template, which template.

java.lang.String getDesignElementType()String from IMetaModelConstants telling whether this is a form, view or what.

java.lang.String getLanguage()

...

Page 23: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

you’d like to see ademonstration.So why don’t we just do that?Click to edit the title text format

you’d like to see ademonstration.So why don’t we just do that?

Page 24: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

References● Domino Designer help contains javadoc● Look for upcoming article on Designer Wiki

▬ http://www-10.lotus.com/ldd/ddwiki.nsf● Download demos from openntf.org

▬ Search for “extensibility”● Eclipse help site

▬ http://help.eclipse.org/ganymede/index.jsp

Page 25: Ad103 - Have it Your Way: Extending IBM Lotus Domino Designer

25

Legal Disclaimer© IBM Corporation 2009. All Rights Reserved.The information contained in this publication is provided for informational purposes only. While efforts were made to verify the completeness and accuracy of the information contained in this publication, it is provided AS IS without warranty of any kind, express or implied. In addition, this information is based on IBM’s current product plans and strategy, which are subject to change by IBM without notice. IBM shall not be responsible for any damages arising out of the use of, or otherwise related to, this publication or any other materials. Nothing contained in this publication is intended to, nor shall have the effect of, creating any warranties or representations from IBM or its suppliers or licensors, or altering the terms and conditions of the applicable license agreement governing the use of IBM software.References in this presentation to IBM products, programs, or services do not imply that they will be available in all countries in which IBM operates. Product release dates and/or capabilities referenced in this presentation may change at any time at IBM’s sole discretion based on market opportunities or other factors, and are not intended to be a commitment to future product or feature availability in any way. Nothing contained in these materials is intended to, nor shall have the effect of, stating or implying that any activities undertaken by you will result in any specific sales, revenue growth or other results.

IBM, the IBM logo, Lotus, Lotus Notes, Notes, Domino, Quickr, Sametime, WebSphere, UC2, PartnerWorld and Lotusphere are trademarks of International Business Machines Corporation in the United States, other countries, or both. Unyte is a trademark of WebDialogs, Inc., in the United States, other countries, or both.

Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both.