Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

User:Dennis.oflynn.compuware.com

Dennis O'Flynn

Biography

Dennis O’Flynn is a Software Architect at Compuware specializing in cross-product integration. Current, he is the Project Lead for the Eclipse Corona project. Previously, Dennis was the Team Leader on an internal server-side framework project that provides messaging and web service infrastructures for several of Compuware’s product lines.

Dennis is an avid fan of ice hockey. He is an assistant coach a youth hockey team and plays recreational adult hockey.

email: Dennis.OFlynn@compuware.com

Links


To Do


Work In Progress

Demo: Project Collaboration

Component Project Container
Explorer
Project Container
Cache
Project Container
View
Project Container
Manager
Project Container
Core
Project Container
Repository
Owner Pawel
Kaczmarek
Dennis
O'Flynn
Marcin
Okraszewski
Glenn
Everitt
Edyta
Kalka
Edyat
Kalka

Naming Convention

Plug-ins

  • Start with org.eclipse.corona
  • Do not use “client” or “server” designation
  • Use “ui” designation if it provides any user interface

Packages

  • Start with org.eclipse.corona

Classes

Methods

  • Use get/set for class attributes
  • Use list prefix for functions that return List objects
    • e.g. List list = x.listMembers();
  • Use find prefix for any search related methods
    • e.g. Member mbr = x.findMember(name);

Back to the top