01: /*
02: *
03: * JMoney - A Personal Finance Manager
04: * Copyright (c) 2004 Nigel Westbury <westbury@users.sourceforge.net>
05: *
06: *
07: * This program is free software; you can redistribute it and/or modify
08: * it under the terms of the GNU General Public License as published by
09: * the Free Software Foundation; either version 2 of the License, or
10: * (at your option) any later version.
11: *
12: * This program is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15: * GNU General Public License for more details.
16: *
17: * You should have received a copy of the GNU General Public License
18: * along with this program; if not, write to the Free Software
19: * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20: *
21: */
22:
23: package net.sf.jmoney.reconciliation.reconcilePage;
24:
25: import net.sf.jmoney.IBookkeepingPage;
26: import net.sf.jmoney.IBookkeepingPageFactory;
27: import net.sf.jmoney.JMoneyPlugin;
28: import net.sf.jmoney.views.NodeEditor;
29:
30: import org.eclipse.ui.IMemento;
31: import org.eclipse.ui.PartInitException;
32:
33: /**
34: * Provides an implement of the IBookkeepingPageFactory interface,
35: * providing an exension to the net.sf.jmoney.pages extension point.
36: * This extension adds the page that reconciles bank accounts.
37: *
38: * @author Nigel Westbury
39: */
40: public class ReconcileBookkeepingPage implements
41: IBookkeepingPageFactory {
42:
43: /* (non-Javadoc)
44: * @see net.sf.jmoney.IBookkeepingPage#createPages(java.lang.Object, org.eclipse.swt.widgets.Composite)
45: */
46: public IBookkeepingPage createFormPage(NodeEditor editor,
47: IMemento memento) {
48: // Create the page only if the properties for this account
49: // indicate that this account has statements that can be
50: // reconciled.
51: ReconcilePage formPage = new ReconcilePage(editor);
52:
53: try {
54: editor.addPage(formPage);
55: } catch (PartInitException e) {
56: JMoneyPlugin.log(e);
57: // TODO: cleanly leave out this page.
58: }
59:
60: return formPage;
61: }
62: }
|