bugged
stringlengths
6
599k
fixed
stringlengths
10
599k
__index_level_0__
int64
0
1.13M
private void formMousePressed(final java.awt.event.MouseEvent evt, final Component component) { resizeOffsetX = evt.getPoint().x; resizeOffsetY = evt.getPoint().y; if ((resizeDirection == ResizeDirection.NONE) && (supportMouseMove)) { moveDragging = Boolean.TRUE; } else if (re...
private void formMousePressed(final java.awt.event.MouseEvent evt, final Component component) { resizeOffsetX = evt.getPoint().x; resizeOffsetY = evt.getPoint().y; if ((resizeDirection == ResizeDirection.NONE) && (supportMouseMove)) { moveDragging = Boolean.TRUE; } else if (re...
1,114,217
public ParityException() { super(); }
ParityException(final Throwable cause) { super(cause); fillInStackTrace(); }
1,114,218
BrowserMainListItemDocument(final BrowserMainAvatar list, final Document document) { super(list, ICON, getListItemText(document)); this.documentId = document.getId(); this.selectionTimer = new Timer(500, new ActionListener() { public void actionPerformed(final ActionEvent e) { getController().selectDocument(...
BrowserMainListItemDocument(final BrowserMainAvatar list, final Document document) { super(list, ICON, document.getName()); this.documentId = document.getId(); this.selectionTimer = new Timer(500, new ActionListener() { public void actionPerformed(final ActionEvent e) { getController().selectDocument(documen...
1,114,219
protected BrowserMainListItem(final BrowserMainAvatar list, final ImageIcon listItemIcon, final String listItemText) { this(list, listItemIcon, listItemText, null); }
protected BrowserMainListItem(final BrowserMainAvatar list, final ImageIcon listItemIcon, final String listItemText) { this(list, listItemIcon, listItemText, null); }
1,114,220
private static ReceiveKeyHistoryItem buildReceiveKeyHistoryItem( final Document document, final ReceiveKeyEvent receiveKeyEvent, final Map<JabberId, User> receiveKeyEventUsers) { final ReceiveKeyHistoryItem receiveKeyHistoryItem = new ReceiveKeyHistoryItem(); receiveKeyHistoryItem.setDate(receiveKeyEvent.getCrea...
private static ReceiveKeyHistoryItem buildReceiveKeyHistoryItem( final Document document, final ReceiveKeyEvent receiveKeyEvent, final Map<JabberId, User> receiveKeyEventUsers) { final ReceiveKeyHistoryItem receiveKeyHistoryItem = new ReceiveKeyHistoryItem(); receiveKeyHistoryItem.setDate(receiveKeyEvent.getCrea...
1,114,222
public Component getListCellRendererComponent(final JList list, final Object value, final int index, final boolean isSelected, final boolean cellHasFocus) { final AbstractVersionCell cell = (AbstractVersionCell) value; textJLabel.setText(cell.getText()); final Icon icon = cell.getIcon(); ...
public Component getListCellRendererComponent(final JList list, final Object value, final int index, final boolean isSelected, final boolean cellHasFocus) { final AbstractVersionCell cell = (AbstractVersionCell) value; textJLabel.setText(cell.getText()); final Icon icon = cell.getIcon(); ...
1,114,223
private void applyMnemonic(final JMenuItem jMenuItem, final Integer mnemonic) { logger.debug("JMenuItem.Mnemonic[" + mnemonic + "]"); jMenuItem.setMnemonic(mnemonic); }
private void applyMnemonic(final JMenuItem jMenuItem, final Integer mnemonic) { jMenuItem.setMnemonic(mnemonic); }
1,114,224
private JMenuItem doCreate(final String text) { logger.debug("JMenuItem[" + text + "]"); final JMenuItem jMenuItem = new JMenuItem(text); applyDefaultFont(jMenuItem); applyMinimumWidth(jMenuItem, 150); return jMenuItem; }
private JMenuItem doCreate(final String text) { final JMenuItem jMenuItem = new JMenuItem(text); applyDefaultFont(jMenuItem); applyMinimumWidth(jMenuItem, 150); return jMenuItem; }
1,114,225
private JCheckBoxMenuItem doCreateCheckBox(final String text, final Integer mnemonic) { logger.debug(text); final JCheckBoxMenuItem jCheckBoxMenuItem = new JCheckBoxMenuItem(text); applyDefaultFont(jCheckBoxMenuItem); applyMnemonic(jCheckBoxMenuItem, mnemonic); return jChe...
private JCheckBoxMenuItem doCreateCheckBox(final String text, final Integer mnemonic) { final JCheckBoxMenuItem jCheckBoxMenuItem = new JCheckBoxMenuItem(text); applyDefaultFont(jCheckBoxMenuItem); applyMnemonic(jCheckBoxMenuItem, mnemonic); return jCheckBoxMenuItem; }
1,114,226
private ProviderFactory() { super(); final ModelFactory modelFactory = ModelFactory.getInstance(); this.documentModel = modelFactory.getDocumentModel(getClass()); this.sessionModel = modelFactory.getSessionModel(getClass()); this.systemMessageModel = modelFactory.getSystemMessageModel(getClass()); this.historyPr...
private ProviderFactory() { super(); final ModelFactory modelFactory = ModelFactory.getInstance(); this.documentModel = modelFactory.getDocumentModel(getClass()); this.sessionModel = modelFactory.getSessionModel(getClass()); this.systemMessageModel = modelFactory.getSystemMessageModel(getClass()); this.historyPr...
1,114,227
private ProviderFactory() { super(); final ModelFactory modelFactory = ModelFactory.getInstance(); this.documentModel = modelFactory.getDocumentModel(getClass()); this.sessionModel = modelFactory.getSessionModel(getClass()); this.systemMessageModel = modelFactory.getSystemMessageModel(getClass()); this.historyPr...
private ProviderFactory() { super(); final ModelFactory modelFactory = ModelFactory.getInstance(); this.documentModel = modelFactory.getDocumentModel(getClass()); this.sessionModel = modelFactory.getSessionModel(getClass()); this.systemMessageModel = modelFactory.getSystemMessageModel(getClass()); this.historyPr...
1,114,228
public Object[] getElements(final Object input) { try { return sessionModel.getArtifactKeys().toArray(new Long[] {}); } catch(final ParityException px) { throw new RuntimeException(px); } }
public Object[] getElements(final Object input) { try { final Collection<SystemMessage> messages = systemMessageModel.read(); return messages.toArray(new SystemMessage[] {}); } catch(final ParityException px) { throw new RuntimeException(px); } }
1,114,229
public Object[] getElements(final Object input) { try { final Collection<SystemMessage> messages = systemMessageModel.read(); return messages.toArray(new SystemMessage[] {}); } catch(final ParityException px) { throw new RuntimeException(px); } }
public Object[] getElements(final Object input) { try { final Collection<SystemMessage> messages = systemMessageModel.read(); return messages.toArray(new SystemMessage[] {}); } catch(final ParityException px) { throw new RuntimeException(px); } }
1,114,230
public Object[] getElements(final Integer index, final Object input) { Assert.assertNotNull("Index cannot be null.", index); Assert.assertTrue( "Index must lie within [0," + (contentProviders.length - 1) + "]", index >= 0 && index < contentProviders.length); return ((FlatContentProvider) getProvid...
public Object[] getElements(final Integer index, final Object input) { Assert.assertNotNull("Index cannot be null.", index); Assert.assertTrue( "Index must lie within [0," + (contentProviders.length - 1) + "]", index >= 0 && index < contentProviders.length); return ((FlatContentProvider) getProvid...
1,114,231
public Object[] getElements(final Object input) { List<Contact> roster; try { roster = sessionModel.readContacts(); // remove all team members from the roster list final Contact[] team = (Contact[]) input; if(null != team) { for(final Contact contact : team) roster.remove(contact); ...
public Object[] getElements(final Object input) { Assert.assertNotNull( "The team provider requires an artifact id: java.lang.Long.", input); Assert.assertOfType( "The team provider requires an artifact id: java.lang.Long.", Long.class, input); final Long artifactId = (Long) input; List<Contact> artifactContact...
1,114,232
public Object[] getElements(final Object input) { List<Contact> roster; try { roster = sessionModel.readContacts(); // remove all team members from the roster list final Contact[] team = (Contact[]) input; if(null != team) { for(final Contact contact : team) roster.remove(contact); ...
public Object[] getElements(final Object input) { List<Contact> roster; try { roster = sessionModel.readContacts(); // remove all team members from the roster list final Contact[] team = (Contact[]) input; if(null != team) { for(final Contact contact : team) roster.remove(contact); ...
1,114,233
public Object[] getElements(final Object input) { List<Contact> roster; try { roster = sessionModel.readContacts(); // remove all team members from the roster list final Contact[] team = (Contact[]) input; if(null != team) { for(final Contact contact : team) roster.remove(contact); ...
public Object[] getElements(final Object input) { List<Contact> roster; try { roster = sessionModel.readContacts(); // remove all team members from the roster list final Contact[] team = (Contact[]) input; if(null != team) { for(final Contact contact : team) roster.remove(contact); ...
1,114,234
public Object[] getElements(final Object input) { Assert.assertNotNull( "The team provider requires an artifact id: java.lang.Long.", input); Assert.assertOfType( "The team provider requires an artifact id: java.lang.Long.", Long.class, input); final Long artifactId = (Long) input; ...
public Object[] getElements(final Object input) { Assert.assertNotNull( "The send artifact version provider requires an artifact id: java.lang.Long.", input); Assert.assertOfType( "The send artifact version provider requires an artifact id: java.lang.Long.", Long.class, input); final L...
1,114,235
public Object[] getElements(final Object input) { Assert.assertNotNull( "The team provider requires an artifact id: java.lang.Long.", input); Assert.assertOfType( "The team provider requires an artifact id: java.lang.Long.", Long.class, input); final Long artifactId = (Long) input; ...
public Object[] getElements(final Object input) { Assert.assertNotNull( "The team provider requires an artifact id: java.lang.Long.", input); Assert.assertOfType( "The team provider requires an artifact id: java.lang.Long.", Long.class, input); final Long artifactId = (Long) input; ...
1,114,236
public Object[] getElements(final Object input) { Assert.assertNotNull( "The team provider requires an artifact id: java.lang.Long.", input); Assert.assertOfType( "The team provider requires an artifact id: java.lang.Long.", Long.class, input); final Long artifactId = (Long) input; ...
public Object[] getElements(final Object input) { Assert.assertNotNull( "The team provider requires an artifact id: java.lang.Long.", input); Assert.assertOfType( "The team provider requires an artifact id: java.lang.Long.", Long.class, input); final Long artifactId = (Long) input; ...
1,114,237
public Object[] getElements(final Object input) { Assert.assertNotNull( "The team provider requires an artifact id: java.lang.Long.", input); Assert.assertOfType( "The team provider requires an artifact id: java.lang.Long.", Long.class, input); final Long artifactId = (Long) input; ...
public Object[] getElements(final Object input) { Assert.assertNotNull( "The team provider requires an artifact id: java.lang.Long.", input); Assert.assertOfType( "The team provider requires an artifact id: java.lang.Long.", Long.class, input); final Long artifactId = (Long) input; ...
1,114,238
public Object[] getElements(final Object input) { Assert.assertNotNull( "The send artifact version provider requires an artifact id: java.lang.Long.", input); Assert.assertOfType( "The send artifact version provider requires an artifact id: java.lang.Long.", Long.class, input); final L...
public Object[] getElements(final Integer index, final Object input) { Assert.assertNotNull( "The send artifact version provider requires an artifact id: java.lang.Long.", input); Assert.assertOfType( "The send artifact version provider requires an artifact id: java.lang.Long.", Long.clas...
1,114,239
public Object[] getElements(final Object input) { Assert.assertNotNull( "The send artifact version provider requires an artifact id: java.lang.Long.", input); Assert.assertOfType( "The send artifact version provider requires an artifact id: java.lang.Long.", Long.class, input); final L...
public Object[] getElements(final Object input) { Assert.assertNotNull( "The send artifact version provider requires an artifact id: java.lang.Long.", input); Assert.assertOfType( "The send artifact version provider requires an artifact id: java.lang.Long.", Long.class, input); final L...
1,114,240
private DocumentListener createDocumentListener() { return new DocumentAdapter() { public void confirmationReceived(final DocumentEvent e) { if(e.isRemote()) { browser.fireDocumentConfirmationReceived(e.getDocument().getId()); } } publi...
private DocumentListener createDocumentListener() { return new DocumentAdapter() { public void confirmationReceived(final DocumentEvent e) { if(e.isRemote()) { browser.fireDocumentConfirmationReceived(e.getDocument().getId()); } } publi...
1,114,241
public void documentUpdated(final DocumentEvent e) { if(e.isRemote()) { browser.fireDocumentUpdated(e.getDocument().getId()); } }
public void documentUpdated(final DocumentEvent e) { if(e.isRemote()) { browser.fireDocumentUpdated(e.getDocument().getId(), Boolean.TRUE); } }
1,114,242
Collection<Project> list() throws ParityException { logger.info("list()"); try { return projectXmlIO.list(); } catch(IOException iox) { logger.error("list()", iox); throw ParityErrorTranslator.translate(iox); } catch(RuntimeException rx) { logger.error("list()", rx); throw ParityErrorTranslator.translate(...
Collection<Project> list() throws ParityException { logger.info("list()"); try { return projectXmlIO.list(); } catch(IOException iox) { logger.error("list()", iox); throw ParityErrorTranslator.translate(iox); } catch(RuntimeException rx) { logger.error("list()", rx); throw ParityErrorTranslator.translate(...
1,114,243
public void run() { try { final HeaderReader headerReader = new HeaderReader(); final StreamHeader sessionId = headerReader.readNext(); if (null != sessionId) { final StreamSession streamSession = streamServer.authenticate(sessionId.getValue(...
public void run() { try { final HeaderReader headerReader = new HeaderReader(); final StreamHeader sessionId = headerReader.readNext(); if (null != sessionId) { final StreamSession streamSession = streamServer.authenticate(sessionId.getValue(...
1,114,244
Preferences getPreferences() { final Properties javaProperties = loadPreferences(); // save the preferences on shutdown Runtime.getRuntime().addShutdownHook(new Thread() { public void run() { storePreferences(javaProperties); } }); return new Preferences() { public Locale getLocale() { return Locale.getDefaul...
Preferences getPreferences() { final Properties javaProperties = loadPreferences(); // save the preferences on shutdown Runtime.getRuntime().addShutdownHook(new Thread() { public void run() { storePreferences(javaProperties); } }); return new Preferences() { public Locale getLocale() { return Locale.getDefaul...
1,114,245
public String getSystemUsername() { return "system"; }
public String getSystemUsername() { return new StringBuffer("system@") .append(getServerHost()).toString(); }
1,114,246
public void firstRun() { loginAvatar = new LoginAvatar(this); openWindow(loginAvatar); final String username = loginAvatar.getUsername(); final String password = loginAvatar.getPassword(); if(null != username && null != password) { final Credentials credentials = new Cr...
public void firstRun() { loginAvatar = new LoginAvatar(this); openWindow(loginAvatar); final String username = loginAvatar.getUsername(); final String password = loginAvatar.getPassword(); if(null != username && null != password) { final Credentials credentials = new Cr...
1,114,247
public void firstRun() { loginAvatar = new LoginAvatar(this); openWindow(loginAvatar); final String username = loginAvatar.getUsername(); final String password = loginAvatar.getPassword(); if(null != username && null != password) { final Credentials credentials = new Cr...
public void firstRun() { loginAvatar = new LoginAvatar(this); openWindow(loginAvatar); final String username = loginAvatar.getUsername(); final String password = loginAvatar.getPassword(); if(null != username && null != password) { final Credentials credentials = new Cr...
1,114,248
public void firstRun() { loginAvatar = new LoginAvatar(this); openWindow(loginAvatar); final String username = loginAvatar.getUsername(); final String password = loginAvatar.getPassword(); if(null != username && null != password) { final Credentials credentials = new Cr...
public void firstRun() { loginAvatar = new LoginAvatar(this); openWindow(loginAvatar); final String username = loginAvatar.getUsername(); final String password = loginAvatar.getPassword(); if(null != username && null != password) { final Credentials credentials = new Cr...
1,114,249
public ErrorAvatar() { super("ErrorDialog", BrowserConstants.DIALOGUE_BACKGROUND); bindEscapeKey("Cancel", new AbstractAction() { /** @see java.io.Serializable */ private static final long serialVersionUID = 1; /** * @see java.awt.event.ActionListener#actio...
public ErrorAvatar() { super("ErrorDialog", BrowserConstants.DIALOGUE_BACKGROUND); bindEscapeKey("Cancel", new AbstractAction() { /** @see java.io.Serializable */ /** * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent) ...
1,114,250
private void initComponents() { javax.swing.JButton closeJButton; javax.swing.JScrollPane errorJScrollPane; closeJButton = new javax.swing.JButton(); errorMessageJLabel = new javax.swing.JLabel(); errorJScrollPane = new javax.swing.JScrollPane(); errorJTextArea = new javax....
private void initComponents() { javax.swing.JButton closeJButton; closeJButton = new javax.swing.JButton(); errorMessageJLabel = new javax.swing.JLabel(); errorJScrollPane = new javax.swing.JScrollPane(); errorJTextArea = new javax.swing.JTextArea(); closeJButton.se...
1,114,251
private void initComponents() { javax.swing.JButton closeJButton; javax.swing.JScrollPane errorJScrollPane; closeJButton = new javax.swing.JButton(); errorMessageJLabel = new javax.swing.JLabel(); errorJScrollPane = new javax.swing.JScrollPane(); errorJTextArea = new javax....
private void initComponents() { javax.swing.JButton closeJButton; javax.swing.JScrollPane errorJScrollPane; errorMessageJLabel = new javax.swing.JLabel(); errorJScrollPane = new javax.swing.JScrollPane(); errorJTextArea = new javax.swing.JTextArea(); closeJButton.se...
1,114,252
private void initComponents() { javax.swing.JButton closeJButton; javax.swing.JScrollPane errorJScrollPane; closeJButton = new javax.swing.JButton(); errorMessageJLabel = new javax.swing.JLabel(); errorJScrollPane = new javax.swing.JScrollPane(); errorJTextArea = new javax....
private void initComponents() { javax.swing.JButton closeJButton; javax.swing.JScrollPane errorJScrollPane; closeJButton = new javax.swing.JButton(); errorMessageJLabel = new javax.swing.JLabel(); errorJScrollPane = new javax.swing.JScrollPane(); errorJTextArea = new javax....
1,114,253
private void initComponents() { javax.swing.JButton closeJButton; javax.swing.JScrollPane errorJScrollPane; closeJButton = new javax.swing.JButton(); errorMessageJLabel = new javax.swing.JLabel(); errorJScrollPane = new javax.swing.JScrollPane(); errorJTextArea = new javax....
private void initComponents() { javax.swing.JButton closeJButton; javax.swing.JScrollPane errorJScrollPane; closeJButton = new javax.swing.JButton(); errorMessageJLabel = new javax.swing.JLabel(); errorJScrollPane = new javax.swing.JScrollPane(); errorJTextArea = new javax....
1,114,254
private void initComponents() { javax.swing.JButton closeJButton; javax.swing.JScrollPane errorJScrollPane; closeJButton = new javax.swing.JButton(); errorMessageJLabel = new javax.swing.JLabel(); errorJScrollPane = new javax.swing.JScrollPane(); errorJTextArea = new javax....
private void initComponents() { javax.swing.JButton closeJButton; javax.swing.JScrollPane errorJScrollPane; closeJButton = new javax.swing.JButton(); errorMessageJLabel = new javax.swing.JLabel(); errorJScrollPane = new javax.swing.JScrollPane(); errorJTextArea = new javax....
1,114,255
private void initComponents() { javax.swing.JButton closeJButton; javax.swing.JScrollPane errorJScrollPane; closeJButton = new javax.swing.JButton(); errorMessageJLabel = new javax.swing.JLabel(); errorJScrollPane = new javax.swing.JScrollPane(); errorJTextArea = new javax....
private void initComponents() { javax.swing.JButton closeJButton; javax.swing.JScrollPane errorJScrollPane; closeJButton = new javax.swing.JButton(); errorMessageJLabel = new javax.swing.JLabel(); errorJScrollPane = new javax.swing.JScrollPane(); errorJTextArea = new javax....
1,114,256
private void initComponents() { javax.swing.JButton closeJButton; javax.swing.JScrollPane errorJScrollPane; closeJButton = new javax.swing.JButton(); errorMessageJLabel = new javax.swing.JLabel(); errorJScrollPane = new javax.swing.JScrollPane(); errorJTextArea = new javax....
private void initComponents() { javax.swing.JButton closeJButton; javax.swing.JScrollPane errorJScrollPane; closeJButton = new javax.swing.JButton(); errorMessageJLabel = new javax.swing.JLabel(); errorJScrollPane = new javax.swing.JScrollPane(); errorJTextArea = new javax....
1,114,257
private void initComponents() { javax.swing.JButton closeJButton; javax.swing.JScrollPane errorJScrollPane; closeJButton = new javax.swing.JButton(); errorMessageJLabel = new javax.swing.JLabel(); errorJScrollPane = new javax.swing.JScrollPane(); errorJTextArea = new javax....
private void initComponents() { javax.swing.JButton closeJButton; javax.swing.JScrollPane errorJScrollPane; closeJButton = new javax.swing.JButton(); errorMessageJLabel = new javax.swing.JLabel(); errorJScrollPane = new javax.swing.JScrollPane(); errorJTextArea = new javax....
1,114,258
public void actionPerformed(java.awt.event.ActionEvent e) { closeJButtonActionPerformed(e); }
public void actionPerformed(java.awt.event.ActionEvent e) { copyDetailsJButtonActionPerformed(e); }
1,114,259
private void reloadError() { errorJTextArea.setText(""); final String error = readInputError(); if(null != error) { errorJTextArea.setText(error); } }
private void reloadError() { errorJTextArea.setText(""); final String error = readInputError(); if (null != error) { errorJScrollPane.setVisible(true); copyDetailsJButton.setVisible(true); errorJTextArea.setText(error); errorJTextArea.setCaretPosition(0); } else { errorJScrollPane.setVisible(f...
1,114,260
DocumentModelImpl(final Workspace workspace) { super(workspace, L18nContext.DOCUMENT); final ComparatorBuilder comparatorBuilder = new ComparatorBuilder(); this.auditor = new DocumentModelAuditor(getContext()); this.defaultComparator = comparatorBuilder.createByName(Boolean.TRUE); this.defaultHistoryCompara...
DocumentModelImpl(final Workspace workspace) { super(workspace); final ComparatorBuilder comparatorBuilder = new ComparatorBuilder(); this.auditor = new DocumentModelAuditor(getContext()); this.defaultComparator = comparatorBuilder.createByName(Boolean.TRUE); this.defaultHistoryComparator = new ComparatorBu...
1,114,261
protected void setUp() throws Exception { super.setUp(); final InternalContainerModel containerModel = getContainerModel(OpheliaTestUser.JUNIT); final Container container = createContainer(OpheliaTestUser.JUNIT, NAME); final Document document = addDocument(OpheliaTestUser.JUNIT, containe...
protected void setUp() throws Exception { super.setUp(); final InternalContainerModel containerModel = getContainerModel(OpheliaTestUser.JUNIT); final Container container = createContainer(OpheliaTestUser.JUNIT, NAME); final Document document = addDocument(OpheliaTestUser.JUNIT, containe...
1,114,262
private void processOfflineQueue() { assertIsReachable(environment); XMPPSession session = null; try { session = new XMPPSessionImpl(); session.login(environment, credentials); final JabberId userId = JabberIdBuilder.build( credentials.getUser...
private void processOfflineQueue() { assertIsReachable(environment); XMPPSession session = null; try { session = new XMPPSessionImpl(); session.login(environment, credentials); final JabberId userId = JabberIdBuilder.build( credentials.getUser...
1,114,263
private Fixture(final Document d, final DocumentModel dModel, final Integer hitsExpectedSize, final IndexModel iModel) { this.d = d; this.dModel = dModel; this.hitsExpectedSize = hitsExpectedSize; this.iModel = iModel; }
private Fixture(final Document d, final DocumentModel dModel, final Integer hitsExpectedSize, final IndexModel iModel) { this.d = d; this.dModel = dModel; this.hitsExpectedSize = hitsExpectedSize; this.iModel = iModel; }
1,114,264
private Fixture(final Document d, final DocumentModel dModel, final Integer hitsExpectedSize, final IndexModel iModel) { this.d = d; this.dModel = dModel; this.hitsExpectedSize = hitsExpectedSize; this.iModel = iModel; }
private Fixture(final Document d, final DocumentModel dModel, final Integer hitsExpectedSize, final IndexModel iModel) { this.d = d; this.dModel = dModel; this.iModel = iModel; }
1,114,265
protected void setUp() throws Exception { super.setUp(); final DocumentModel dModel = getDocumentModel(); final IndexModel iModel = getIndexModel(); data = new LinkedList<Fixture>(); Document d; for(final File inputFile : getInputFiles()) { d = dModel.create(inputFile.getName(), inputFile.getName(), inputFile)...
protected void setUp() throws Exception { super.setUp(); final DocumentModel dModel = getDocumentModel(); final IndexModel iModel = getIndexModel(); data = new LinkedList<Fixture>(); for(final File inputFile : getInputFiles()) { d = dModel.create(inputFile.getName(), inputFile.getName(), inputFile); data.ad...
1,114,266
protected void setUp() throws Exception { super.setUp(); final DocumentModel dModel = getDocumentModel(); final IndexModel iModel = getIndexModel(); data = new LinkedList<Fixture>(); Document d; for(final File inputFile : getInputFiles()) { d = dModel.create(inputFile.getName(), inputFile.getName(), inputFile)...
protected void setUp() throws Exception { super.setUp(); final DocumentModel dModel = getDocumentModel(); final IndexModel iModel = getIndexModel(); data = new LinkedList<Fixture>(); Document d; for(final File inputFile : getInputFiles()) { d = dModel.create(inputFile.getName(), inputFile.getName(), inputFile)...
1,114,267
public void testSearch() { try { List<IndexHit> indexHits; for(final Fixture datum : data) { indexHits = datum.iModel.search(datum.d.getName()); assertNotNull("Index hits is null.", indexHits); Document searchHit; for(final IndexHit indexHit : indexHits) { searchHit = datum.dModel.get(indexHit.get...
public void testSearch() { try { List<IndexHit> indexHits; for(final Fixture datum : data) { indexHits = datum.iModel.search(datum.criteria); assertNotNull("Index hits is null.", indexHits); Document searchHit; for(final IndexHit indexHit : indexHits) { searchHit = datum.dModel.get(indexHit.getId(...
1,114,268
public void testSearch() { try { List<IndexHit> indexHits; for(final Fixture datum : data) { indexHits = datum.iModel.search(datum.d.getName()); assertNotNull("Index hits is null.", indexHits); Document searchHit; for(final IndexHit indexHit : indexHits) { searchHit = datum.dModel.get(indexHit.get...
public void testSearch() { try { List<IndexHit> indexHits; for(final Fixture datum : data) { indexHits = datum.iModel.search(datum.d.getName()); assertNotNull("Index hits is null.", indexHits); Document searchHit; for(final IndexHit indexHit : indexHits) { searchHit = datum.dModel.get(indexHit.get...
1,114,269
void setValueFactory(ValueFactory valueFactory) { this.valueFactory = valueFactory; }
public void setValueFactory(ValueFactory valueFactory) { this.valueFactory = valueFactory; }
1,114,270
public static synchronized ServletToolboxManager getInstance(ServletContext servletContext, String toolboxFile) { // little fix up if (!toolboxFile.startsWith("/")) { toolboxFile = "/" + toolboxFile; } /...
public static synchronized ServletToolboxManager getInstance(ServletContext servletContext, String toolboxFile) { // little fix up if (!toolboxFile.startsWith("/")) { toolboxFile = "/" + toolboxFile; } /...
1,114,271
public static synchronized ServletToolboxManager getInstance(ServletContext servletContext, String toolboxFile) { // little fix up if (!toolboxFile.startsWith("/")) { toolboxFile = "/" + toolboxFile; } /...
public static synchronized ServletToolboxManager getInstance(ServletContext servletContext, String toolboxFile) { // little fix up if (!toolboxFile.startsWith("/")) { toolboxFile = "/" + toolboxFile; } /...
1,114,272
public static synchronized ServletToolboxManager getInstance(ServletContext servletContext, String toolboxFile) { // little fix up if (!toolboxFile.startsWith("/")) { toolboxFile = "/" + toolboxFile; } /...
public static synchronized ServletToolboxManager getInstance(ServletContext servletContext, String toolboxFile) { // little fix up if (!toolboxFile.startsWith("/")) { toolboxFile = "/" + toolboxFile; } /...
1,114,273
public Component getListCellRendererComponent(final JList list, final Object value, final int index, final boolean isSelected, final boolean cellHasFocus) { final MainCell cell = (MainCell) value; remove(paddingJLabel); final GridBagConstraints gridBagConstraints = new java.awt.GridBagConstrain...
public Component getListCellRendererComponent(final JList list, final Object value, final int index, final boolean isSelected, final boolean cellHasFocus) { final MainCell cell = (MainCell) value; remove(paddingJLabel); final GridBagConstraints gridBagConstraints = new java.awt.GridBagConstrain...
1,114,274
private void doToggleExpansion(final TabPanel tabPanel) { final ContainerPanel containerPanel = (ContainerPanel) tabPanel; final Boolean expanded; if (isExpanded(containerPanel)) { expanded = Boolean.FALSE; } else { // NOTE-BEGIN:multi-expand to allow multiple selec...
private void doToggleExpansion(final TabPanel tabPanel) { final ContainerPanel containerPanel = (ContainerPanel) tabPanel; final Boolean expanded; if (isExpanded(containerPanel)) { expanded = Boolean.FALSE; } else { // NOTE-BEGIN:multi-expand to allow multiple selec...
1,114,275
void createStream(final JabberId userId, final String streamId, final UUID uniqueId, final Long versionId) { logApiId(); logVariable("userId", userId); logVariable("streamId", streamId); logVariable("uniqueId", uniqueId); logVariable("versionId", versionId); try ...
void createStream(final JabberId userId, final String streamId, final UUID uniqueId, final Long versionId) { logApiId(); logVariable("userId", userId); logVariable("streamId", streamId); logVariable("uniqueId", uniqueId); logVariable("versionId", versionId); try ...
1,114,276
void createStream(final JabberId userId, final String streamId, final UUID uniqueId, final Long versionId) { logApiId(); logVariable("userId", userId); logVariable("streamId", streamId); logVariable("uniqueId", uniqueId); logVariable("versionId", versionId); try ...
void createStream(final JabberId userId, final String streamId, final UUID uniqueId, final Long versionId) { logApiId(); logVariable("userId", userId); logVariable("streamId", streamId); logVariable("uniqueId", uniqueId); logVariable("versionId", versionId); try ...
1,114,277
public Float getTextInsetFactor() { return InsetFactors.LEVEL_2; }
public Float getTextInsetFactor() { return InsetFactors.LEVEL_3; }
1,114,278
private Fixture(final String description, final File file, final String documentContentChecksum, final DocumentModel documentModel, final String name) { this.description = description; this.file = file; this.documentContentChecksum = documentContentChecksum; this.documentModel = documentModel; this.na...
private Fixture(final String description, final File file, final String documentContentChecksum, final DocumentModel documentModel, final String name) { this.description = description; this.file = file; this.documentContentChecksum = documentContentChecksum; this.documentModel = documentModel; this.na...
1,114,280
protected void setUp() throws Exception { super.setUp(); final DocumentModel documentModel = getDocumentModel(); data = new Vector<Fixture>(4); String name, description; String documentContentChecksum; for(File testFile : getInputFiles()) { name = testFile.getName(); description = name; documentContentChec...
protected void setUp() throws Exception { super.setUp(); final DocumentModel documentModel = getDocumentModel(); data = new Vector<Fixture>(4); String name, description; String documentContentChecksum; for(File testFile : getInputFiles()) { name = testFile.getName(); description = name; documentContentChec...
1,114,282
public void testCreate() { try { Document document; DocumentContent content; DocumentVersion version; DocumentVersionContent versionContent; DocumentContent versionContentSnapshot; for(Fixture datum : data) { document = datum.documentModel.create(datum.name, datum.description, datum.file); asse...
public void testCreate() { try { Document document; DocumentContent content; DocumentVersion version; DocumentVersionContent versionContent; DocumentContent versionContentSnapshot; for(Fixture datum : data) { document = datum.documentModel.create(datum.name, datum.description, datum.file); asse...
1,114,283
public void testCreate() { try { Document document; DocumentContent content; DocumentVersion version; DocumentVersionContent versionContent; DocumentContent versionContentSnapshot; for(Fixture datum : data) { document = datum.documentModel.create(datum.name, datum.description, datum.file); asse...
public void testCreate() { try { Document document; DocumentContent content; DocumentVersion version; DocumentVersionContent versionContent; DocumentContent versionContentSnapshot; for(Fixture datum : data) { document = datum.documentModel.create(datum.name, datum.description, datum.file); asse...
1,114,284
protected void backup(final JabberId userId) { }
private void backup(final JabberId userId, final IQ query) { final JabberId archiveId = getUserModel().readArchiveId(userId); if (null != archiveId) { query.setTo(getJID(archiveId)); enqueue(archiveId, query); if (isOnline(archiveId)) { sendQueueUpdated(archiveId); } else { logWarning(MessageFormat.format("Archive ...
1,114,285
public String eval(Context ctx, String vtl) throws Exception { /* don't waste time with null or empty strings */ if (vtl == null || vtl.length() == 0) { return null; } StringWriter sw = new StringWriter(); boolean success = Velocity.evaluate(ctx, sw, LOG_TAG, ...
public String eval(Context ctx, String vtl) throws Exception { /* don't waste time with null or empty strings */ if (vtl == null || vtl.length() == 0) { return null; } StringWriter sw = new StringWriter(); boolean success; if (engine == null) { success = Veloc...
1,114,286
void archive(final Long artifactId) { logger.logApiId(); logger.logVariable("artifactId", artifactId); try { assertArchiveOnline(); final UUID uniqueId = getInternalArtifactModel().readUniqueId(artifactId); getSessionModel().archiveArtifact(localUserId(), unique...
void archive(final Long artifactId) { logger.logApiId(); logger.logVariable("artifactId", artifactId); try { assertArchiveOnline(); final UUID uniqueId = getArtifactModel().readUniqueId(artifactId); getSessionModel().archiveArtifact(localUserId(), uniqueId); ...
1,114,287
Container readContainer(final UUID uniqueId) { logger.logApiId(); logger.logVariable("uniqueId", uniqueId); try { assertArchiveOnline(); // HACK A quck'n'dirty check to see if the container exists locally if (null != getInternalArtifactModel().readId(uniqueId)) ...
Container readContainer(final UUID uniqueId) { logger.logApiId(); logger.logVariable("uniqueId", uniqueId); try { assertArchiveOnline(); // HACK A quck'n'dirty check to see if the container exists locally if (null != getArtifactModel().readId(uniqueId)) { ...
1,114,288
List<DocumentVersion> readDocumentVersions(final UUID uniqueId, final Long versionId, final UUID documentUniqueId) { logger.logApiId(); logger.logVariable("uniqueId", uniqueId); logger.logVariable("versionId", versionId); logger.logVariable("documentUniqueId", documentUniqueId...
List<DocumentVersion> readDocumentVersions(final UUID uniqueId, final Long versionId) { logger.logApiId(); logger.logVariable("uniqueId", uniqueId); logger.logVariable("versionId", versionId); logger.logVariable("documentUniqueId", documentUniqueId); return readDocument...
1,114,289
List<DocumentVersion> readDocumentVersions(final UUID uniqueId, final Long versionId, final UUID documentUniqueId) { logger.logApiId(); logger.logVariable("uniqueId", uniqueId); logger.logVariable("versionId", versionId); logger.logVariable("documentUniqueId", documentUniqueId...
List<DocumentVersion> readDocumentVersions(final UUID uniqueId, final Long versionId, final UUID documentUniqueId) { logger.logApiId(); logger.logVariable("uniqueId", uniqueId); logger.logVariable("versionId", versionId); logger.logVariable("documentUniqueId", documentUniqueId...
1,114,290
public void run() { logger.logApiId(); logger.logVariable("run", run); try { while (run) { started = true; synchronized (this) { notifyAll(); } final Socket clientSocket = serverSocket.accept(); ...
public void run() { logger.logApiId(); logger.logVariable("run", run); try { while (run) { started = true; synchronized (this) { notifyAll(); } final Socket clientSocket = serverSocket.accept(); ...
1,114,291
public void run() { logger.logApiId(); logger.logVariable("run", run); try { while (run) { started = true; synchronized (this) { notifyAll(); } final Socket clientSocket = serverSocket.accept(); ...
public void run() { logger.logApiId(); logger.logVariable("run", run); try { while (run) { started = true; synchronized (this) { notifyAll(); } final Socket clientSocket = serverSocket.accept(); ...
1,114,292
void delete(final Long documentId) throws ParityException { logger.info("[LMODEL] [DOCUMENT MODEL] [DELETE]"); logger.debug(documentId); assertOnline("[LMODEL] [DOCUMENT MODEL] [DELETE] [USER IS NOT ONLINE]"); final Document document = get(documentId); if(isKeyHolder(documentId)) { if...
void delete(final Long documentId) throws ParityException { logger.info("[LMODEL] [DOCUMENT MODEL] [DELETE]"); logger.debug(documentId); assertOnline("[LMODEL] [DOCUMENT MODEL] [DELETE] [USER IS NOT ONLINE]"); final Document document = get(documentId); if(isKeyHolder(documentId)) { if...
1,114,293
void delete(final Long documentId) throws ParityException { logger.info("[LMODEL] [DOCUMENT MODEL] [DELETE]"); logger.debug(documentId); assertOnline("[LMODEL] [DOCUMENT MODEL] [DELETE] [USER IS NOT ONLINE]"); final Document document = get(documentId); if(isKeyHolder(documentId)) { if...
void delete(final Long documentId) throws ParityException { logger.info("[LMODEL] [DOCUMENT MODEL] [DELETE]"); logger.debug(documentId); assertOnline("[LMODEL] [DOCUMENT MODEL] [DELETE] [USER IS NOT ONLINE]"); final Document document = get(documentId); if(isKeyHolder(documentId)) { if...
1,114,294
public ContainerCell(final Container container) { super(); setCreatedBy(container.getCreatedBy()); setCreatedOn(container.getCreatedOn()); add(container.getFlags()); setUniqueId(container.getUniqueId()); setName(container.getName()); setUpdatedBy(container.getUpdated...
public ContainerCell(final Container container) { super(); setCreatedBy(container.getCreatedBy()); setCreatedOn(container.getCreatedOn()); setDraft(container.isDraft()); setId(container.getId()); setLocalDraft(container.isLocalDraft()); setName(container.getName()); setRemoteInfo(contain...
1,114,295
public ContainerCell(final Container container) { super(); setCreatedBy(container.getCreatedBy()); setCreatedOn(container.getCreatedOn()); add(container.getFlags()); setUniqueId(container.getUniqueId()); setName(container.getName()); setUpdatedBy(container.getUpdated...
public ContainerCell(final Container container) { super(); setCreatedBy(container.getCreatedBy()); setCreatedOn(container.getCreatedOn()); add(container.getFlags()); setUniqueId(container.getUniqueId()); setUpdatedBy(container.getUpdatedBy()); setUpdatedOn(co...
1,114,296
public ContainerCell(final Container container) { super(); setCreatedBy(container.getCreatedBy()); setCreatedOn(container.getCreatedOn()); add(container.getFlags()); setUniqueId(container.getUniqueId()); setName(container.getName()); setUpdatedBy(container.getUpdated...
public ContainerCell(final Container container) { super(); setCreatedBy(container.getCreatedBy()); setCreatedOn(container.getCreatedOn()); add(container.getFlags()); setUniqueId(container.getUniqueId()); setName(container.getName()); setUpdatedBy(container.getUpdated...
1,114,297
public void triggerPopup(final Connection connection, final Component invoker, final MouseEvent e, final int x, final int y) { final JPopupMenu jPopupMenu = MenuFactory.createPopup(); if (!isSetDraft()) { final Data createDraftData = new Data(1); createDraftData.set(CreateDraft.D...
public void triggerPopup(final Connection connection, final Component invoker, final MouseEvent e, final int x, final int y) { final JPopupMenu jPopupMenu = MenuFactory.createPopup(); if (!isDraft()) { final Data createDraftData = new Data(1); createDraftData.set(CreateDraft.Data...
1,114,298
public void triggerPopup(final Connection connection, final Component invoker, final MouseEvent e, final int x, final int y) { final JPopupMenu jPopupMenu = MenuFactory.createPopup(); if (!isSetDraft()) { final Data createDraftData = new Data(1); createDraftData.set(CreateDraft.D...
public void triggerPopup(final Connection connection, final Component invoker, final MouseEvent e, final int x, final int y) { final JPopupMenu jPopupMenu = MenuFactory.createPopup(); if (!isSetDraft()) { final Data createDraftData = new Data(1); createDraftData.set(CreateDraft.D...
1,114,299
public void containerClosed(final ContainerEvent e) { fail(NAME + " [CONTAINER CLOSED EVENT WAS FIRED]"); }
public void containerClosed(ContainerEvent e) { fail(NAME + " [CONTAINER CLOSED EVENT WAS FIRED]"); }
1,114,300
public void containerCreated(final ContainerEvent e) { fail(NAME + " [CONTAINER CREATED EVENT WAS FIRED]"); }
public void containerCreated(ContainerEvent e) { fail(NAME + " [CONTAINER CREATED EVENT WAS FIRED]"); }
1,114,301
public void containerDeleted(final ContainerEvent e) { didNotify = Boolean.TRUE; assertTrue(NAME + " [EVENT GENERATED IS NOT LOCAL]", e.isLocal()); assertTrue(NAME + " [EVENT GENERATED IS REMOTE]", !e.isRemote()); assertNull(NAME + " [CONTAINER IS NOT NULL]", e.getCon...
public void containerDeleted(ContainerEvent e) { didNotify = Boolean.TRUE; assertTrue(NAME + " [EVENT GENERATED IS NOT LOCAL]", e.isLocal()); assertTrue(NAME + " [EVENT GENERATED IS REMOTE]", !e.isRemote()); assertNull(NAME + " [CONTAINER IS NOT NULL]", e.getContainer...
1,114,302
public void containerReactivated(final ContainerEvent e) { fail(NAME + " [CONTAINER REACTIVATED EVENT WAS FIRED]"); }
public void containerReactivated(ContainerEvent e) { fail(NAME + " [CONTAINER REACTIVATED EVENT WAS FIRED]"); }
1,114,303
public void documentAdded(final ContainerEvent e) { fail(NAME + " [DOCUMENT ADDED EVENT WAS FIRED]"); }
public void documentAdded(ContainerEvent e) { fail(NAME + " [DOCUMENT ADDED EVENT WAS FIRED]"); }
1,114,304
public static AuditEventType fromId(final Integer id) { switch(id) { case 0: return CLOSE; case 1: return CREATE; case 2: return RECEIVE; case 3: return RECEIVE_KEY; case 4: return SEND; case 5: return SEND_KEY; default: throw Assert.createUnreachable("Could not determine audit type: " + id); } }
public static AuditEventType fromId(final Integer id) { switch(id) { case 0: return CLOSE; case 1: return CREATE; case 2: return RECEIVE; case 3: return RECEIVE_KEY; case 4: return SEND; case 5: return SEND_KEY; default: throw Assert.createUnreachable("Could not determine audit type: " + id); } }
1,114,305
Document create(final Project project, final String name, final String description, final File file) throws ParityException { logger.info("create(Project,String,String,File)"); logger.debug(project); logger.debug(name); logger.debug(description); logger.debug(file); Assert.assertTrue( "create(Project,String...
Document create(final Project project, final String name, final String description, final File file) throws ParityException { logger.info("create(Project,String,String,File)"); logger.debug(project); logger.debug(name); logger.debug(description); logger.debug(file); Assert.assertTrue( "create(Project,String...
1,114,306
private DocumentVersion createVersion(final Document document, final DocumentAction action, final DocumentActionData actionData) throws IOException, ParityException { final File cacheFile = getCacheFile(document); if(cacheFile.exists()) { final byte[] cacheFileBytes = getCacheFileBytes(document); final Strin...
DocumentVersion createVersion(final Document document, final DocumentAction action, final DocumentActionData actionData) throws IOException, ParityException { final File cacheFile = getCacheFile(document); if(cacheFile.exists()) { final byte[] cacheFileBytes = getCacheFileBytes(document); final String cacheF...
1,114,307
private DocumentVersion createVersion(final Document document, final DocumentAction action, final DocumentActionData actionData) throws IOException, ParityException { final File cacheFile = getCacheFile(document); if(cacheFile.exists()) { final byte[] cacheFileBytes = getCacheFileBytes(document); final Strin...
private DocumentVersion createVersion(final Document document, final DocumentAction action, final DocumentActionData actionData) throws IOException, ParityException { final File cacheFile = getCacheFile(document); if(cacheFile.exists()) { final byte[] cacheFileBytes = getCacheFileBytes(document); final Strin...
1,114,308
private DocumentVersion createVersion(final Document document, final DocumentAction action, final DocumentActionData actionData) throws IOException, ParityException { final File cacheFile = getCacheFile(document); if(cacheFile.exists()) { final byte[] cacheFileBytes = getCacheFileBytes(document); final Strin...
private DocumentVersion createVersion(final Document document, final DocumentAction action, final DocumentActionData actionData) throws IOException, ParityException { final File cacheFile = getCacheFile(document); if(cacheFile.exists()) { final byte[] cacheFileBytes = getCacheFileBytes(document); final Strin...
1,114,309
public List<HistoryItem> create(final Iterable<AuditEvent> auditEvents, final InternalSessionModel iSModel) throws ParityException { final List<HistoryItem> history = new LinkedList<HistoryItem>(); final Map<JabberId, User> auditUsers = buildUserMap(auditEvents, iSModel); for(final AuditEvent auditEvent : auditEv...
public List<HistoryItem> create(final Iterable<AuditEvent> auditEvents, final InternalSessionModel iSModel) throws ParityException { final List<HistoryItem> history = new LinkedList<HistoryItem>(); final Map<JabberId, User> auditUsers = buildUserMap(auditEvents, iSModel); for(final AuditEvent auditEvent : auditEv...
1,114,312
private void installDataListener() { final DefaultListModel listModel = model.getListModel(); listModel.addListDataListener(new ListDataListener() { public void contentsChanged(final ListDataEvent e) { } public void intervalAdded(final ListDataEvent e) { ...
private void installDataListener() { final DefaultListModel listModel = model.getListModel(); listModel.addListDataListener(new ListDataListener() { public void contentsChanged(final ListDataEvent e) { } public void intervalAdded(final ListDataEvent e) { ...
1,114,313
private void installDataListener() { final DefaultListModel listModel = model.getListModel(); listModel.addListDataListener(new ListDataListener() { public void contentsChanged(final ListDataEvent e) { } public void intervalAdded(final ListDataEvent e) { ...
private void installDataListener() { final DefaultListModel listModel = model.getListModel(); listModel.addListDataListener(new ListDataListener() { public void contentsChanged(final ListDataEvent e) { } public void intervalAdded(final ListDataEvent e) { ...
1,114,314
private void installDataListener() { final DefaultListModel listModel = model.getListModel(); listModel.addListDataListener(new ListDataListener() { public void contentsChanged(final ListDataEvent e) { } public void intervalAdded(final ListDataEvent e) { ...
private void installDataListener() { final DefaultListModel listModel = model.getListModel(); listModel.addListDataListener(new ListDataListener() { public void contentsChanged(final ListDataEvent e) { } public void intervalAdded(final ListDataEvent e) { ...
1,114,315
public void intervalAdded(final ListDataEvent e) { final int index0 = e.getIndex0(); debug(); tabJPanel.remove(fillJLabel); for (int i = index0; i < tabJPanel.getComponentCount(); i++) { tabJPanel.remove(i); } ...
public void intervalAdded(final ListDataEvent e) { final int index0 = e.getIndex0(); tabJPanel.remove(fillJLabel); for (int i = index0; i < tabJPanel.getComponentCount(); i++) { tabJPanel.remove(i); } ...
1,114,318
public void intervalRemoved(final ListDataEvent e) { final int index0 = e.getIndex0(); final int index1 = e.getIndex1(); debug(); tabJPanel.remove(fillJLabel); for (int i = index0; i < index1 + 1; i++) { tabJPanel....
public void intervalRemoved(final ListDataEvent e) { final int index0 = e.getIndex0(); final int index1 = e.getIndex1(); debug(); tabJPanel.remove(fillJLabel); for (int i = index0; i < index1 + 1; i++) { tabJPanel....
1,114,320
public void intervalRemoved(final ListDataEvent e) { final int index0 = e.getIndex0(); final int index1 = e.getIndex1(); debug(); tabJPanel.remove(fillJLabel); for (int i = index0; i < index1 + 1; i++) { tabJPanel....
public void intervalRemoved(final ListDataEvent e) { final int index0 = e.getIndex0(); final int index1 = e.getIndex1(); debug(); tabJPanel.remove(fillJLabel); for (int i = e.getIndex0(); i < e.getIndex1() + 1; i++) { ...
1,114,321
private ProviderFactory() { super(); documentModel = ModelFactory.getInstance().getDocumentModel(getClass()); sessionModel = ModelFactory.getInstance().getSessionModel(getClass()); this.historyProvider = new FlatContentProvider() { final ComparatorBuilder comparatorBuilder = new ComparatorBuilder(); final Comp...
private ProviderFactory() { super(); documentModel = ModelFactory.getInstance().getDocumentModel(getClass()); sessionModel = ModelFactory.getInstance().getSessionModel(getClass()); this.historyProvider = new FlatContentProvider() { final ComparatorBuilder comparatorBuilder = new ComparatorBuilder(); final Comp...
1,114,323
private ProviderFactory() { super(); documentModel = ModelFactory.getInstance().getDocumentModel(getClass()); sessionModel = ModelFactory.getInstance().getSessionModel(getClass()); this.historyProvider = new FlatContentProvider() { final ComparatorBuilder comparatorBuilder = new ComparatorBuilder(); final Comp...
private ProviderFactory() { super(); documentModel = ModelFactory.getInstance().getDocumentModel(getClass()); sessionModel = ModelFactory.getInstance().getSessionModel(getClass()); this.historyProvider = new FlatContentProvider() { final ComparatorBuilder comparatorBuilder = new ComparatorBuilder(); final Comp...
1,114,324
private ProviderFactory() { super(); documentModel = ModelFactory.getInstance().getDocumentModel(getClass()); sessionModel = ModelFactory.getInstance().getSessionModel(getClass()); this.historyProvider = new FlatContentProvider() { final ComparatorBuilder comparatorBuilder = new ComparatorBuilder(); final Comp...
private ProviderFactory() { super(); documentModel = ModelFactory.getInstance().getDocumentModel(getClass()); sessionModel = ModelFactory.getInstance().getSessionModel(getClass()); this.historyProvider = new FlatContentProvider() { final ComparatorBuilder comparatorBuilder = new ComparatorBuilder(); final Comp...
1,114,325