Examples of LastModifiedDocumentsPreferences


Examples of org.jboss.seam.wiki.plugin.basic.LastModifiedDocumentsPreferences

                    @Override
                    public String renderMacro(WikiTextMacro macro) {

                        if (macro.getName().equals("lastModifiedDocuments")) {
                            WikiPluginMacro pluginMacro = PluginRegistry.instance().createWikiPluginMacro(macro);
                            LastModifiedDocumentsPreferences lmdPrefs =
                                    Preferences.instance().get(LastModifiedDocumentsPreferences.class, pluginMacro);
                            assert lmdPrefs.getDocumentTitleLength().equals(60l);
                        }

                        return null;
                    }
                }).parse();
View Full Code Here

Examples of org.jboss.seam.wiki.plugin.basic.LastModifiedDocumentsPreferences

                    @Override
                    public String renderMacro(WikiTextMacro macro) {

                        if (macro.getName().equals("lastModifiedDocuments")) {
                            WikiPluginMacro pluginMacro = PluginRegistry.instance().createWikiPluginMacro(macro);
                            LastModifiedDocumentsPreferences lmdPrefs =
                                    Preferences.instance().get(LastModifiedDocumentsPreferences.class, pluginMacro);
                            assert lmdPrefs.getDocumentTitleLength().equals(66l);
                        }

                        return null;
                    }
                }).parse();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.