use of de.janrufmonitor.repository.GoogleContactsProxy in project janrufmonitor by tbrandt77.
the class GoogleCategoryImportAction method run.
public void run() {
GoogleContactsProxy ocp = new GoogleContactsProxy();
List subfolders = ocp.getCategories();
if (subfolders != null && subfolders.size() > 0) {
ocp.ensureEditorConfigurationCatergories(subfolders);
IAction cat = ActionRegistry.getInstance().getAction("editor_category", this.m_app);
cat.setApplication(this.m_app);
cat.run();
}
}
Aggregations