The Architecture of Open Source Applications Quotes
The Architecture of Open Source Applications
by
Amy Brown328 ratings, 3.66 average rating, 27 reviews
Open Preview
The Architecture of Open Source Applications Quotes
Showing 1-3 of 3
“There were also attempts to build open source versions, notably IDA sendmail and KJS. IDA sendmail came from Linköping University. IDA included extensions to make it easier to install and manage in larger environments and a completely new configuration system. One of the major new features was the inclusion of dbm(3) database maps to support highly dynamic sites. These were available using a new syntax in the configuration file and were used for many functions including mapping of addresses to and from external syntax (for example, sending out mail as john_doe@example.com instead of johnd@example.com) and routing.”
― The Architecture of Open Source Applications
― The Architecture of Open Source Applications
“package com.example.helloworld.actions; import org.eclipse.jface.action.IAction; import org.eclipse.jface.viewers.ISelection; import org.eclipse.ui.IWorkbenchWindow; import org.eclipse.ui.IWorkbenchWindowActionDelegate; import org.eclipse.jface.dialogs.MessageDialog; public class ExampleAction implements IWorkbenchWindowActionDelegate { private IWorkbenchWindow window; public ExampleAction() { } public void run(IAction action) { MessageDialog.openInformation( window.getShell(), "org.eclipse.helloworld", "Hello, Eclipse architecture world"); } public void selectionChanged(IAction action, ISelection selection) { } public void dispose() { } public void init(IWorkbenchWindow window) { this.window = window; } }”
― The Architecture of Open Source Applications
― The Architecture of Open Source Applications
“Your plugin's extension to contribute a menu item to the org.eclipse.ui.actionSet extension point would look like: <?xml version="1.0" encoding="UTF-8"?> ”
― The Architecture of Open Source Applications
― The Architecture of Open Source Applications
