Package org.freeplane.view.swing.features.time.mindmapmode

Examples of org.freeplane.view.swing.features.time.mindmapmode.ReminderHook$TimeListAction


        }
    }

    // Reminder
    public void createOrReplace(Date remindAt, String periodUnit, Integer period) {
        final ReminderHook reminderHook = Controller.getCurrentModeController().getExtension(ReminderHook.class);
        removeOldReminder(reminderHook);
        final ReminderExtension reminder = newReminder(remindAt);
        reminder.setPeriodUnitAsString(periodUnit);
        reminder.setPeriod(period);
        reminderHook.add(getDelegate(), reminder);
    }
View Full Code Here


        reminder.setScript(scriptSource);
    }

    // Reminder
    public void remove() {
        final ReminderHook reminderHook = Controller.getCurrentModeController().getExtension(ReminderHook.class);
        removeOldReminder(reminderHook);
    }
View Full Code Here

    new BlinkingNodeHook();
    SummaryNode.install();
    AlwaysUnfoldedNode.install();
    FreeNode.install();
    new CreationModificationPlugin();
    modeController.addExtension(ReminderHook.class, new ReminderHook(modeController));
    new AutomaticEdgeColorHook();
    new ViewerController();
    modeController.addAction(new AddAttributeAction());
    modeController.addAction(new RemoveFirstAttributeAction());
    modeController.addAction(new RemoveLastAttributeAction());
View Full Code Here

TOP

Related Classes of org.freeplane.view.swing.features.time.mindmapmode.ReminderHook$TimeListAction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.