bugged stringlengths 6 599k | fixed stringlengths 10 599k | __index_level_0__ int64 0 1.13M |
|---|---|---|
void processEventQueue(final JabberId userId) { logger.logApiId(); logger.logVariable("userId", userId); logger.logVariable("queueSize", queueSize); synchronized (queueLock) { final XMPPMethod processOfflineQueue = new XMPPMethod("system:readqueueevents"); processOf... | void processEventQueue(final JabberId userId) { logger.logApiId(); logger.logVariable("userId", userId); synchronized (queueLock) { final XMPPMethod processOfflineQueue = new XMPPMethod("system:readqueueevents"); processOfflineQueue.setParameter("userId", userId); ... | 1,113,867 |
void processEventQueue(final JabberId userId) { logger.logApiId(); logger.logVariable("userId", userId); logger.logVariable("queueSize", queueSize); synchronized (queueLock) { final XMPPMethod processOfflineQueue = new XMPPMethod("system:readqueueevents"); processOf... | void processEventQueue(final JabberId userId) { logger.logApiId(); logger.logVariable("userId", userId); logger.logVariable("queueSize", queueSize); synchronized (queueLock) { final XMPPMethod processOfflineQueue = new XMPPMethod("system:readqueueevents"); processOf... | 1,113,868 |
void processEventQueue(final JabberId userId) { logger.logApiId(); logger.logVariable("userId", userId); logger.logVariable("queueSize", queueSize); synchronized (queueLock) { final XMPPMethod processOfflineQueue = new XMPPMethod("system:readqueueevents"); processOf... | void processEventQueue(final JabberId userId) { logger.logApiId(); logger.logVariable("userId", userId); logger.logVariable("queueSize", queueSize); synchronized (queueLock) { final XMPPMethod processOfflineQueue = new XMPPMethod("system:readqueueevents"); processOf... | 1,113,869 |
void processEventQueue(final JabberId userId) { logger.logApiId(); logger.logVariable("userId", userId); logger.logVariable("queueSize", queueSize); synchronized (queueLock) { final XMPPMethod processOfflineQueue = new XMPPMethod("system:readqueueevents"); processOf... | void processEventQueue(final JabberId userId) { logger.logApiId(); logger.logVariable("userId", userId); logger.logVariable("queueSize", queueSize); synchronized (queueLock) { final XMPPMethod processOfflineQueue = new XMPPMethod("system:readqueueevents"); processOf... | 1,113,870 |
public void run() { while(running) { sysApp.logger.info("[BROWSER2] [APP] [SYS] [IMPL] [RUNNING]"); try { synchronized(this) { wait(); } } catch(final InterruptedException ix) { sysApp.logger.info("[BROWSER2] [APP] [SYS] [IMPL] [INTERRUPTED]"); } processQueue(); } } | public void run() { while(running) { sysApp.logger.info("[BROWSER2] [APP] [SYS] [IMPL] [RUNNING]"); try { synchronized(this) { wait(); } } catch(final InterruptedException ix) { sysApp.logger.info("[BROWSER2] [APP] [SYS] [IMPL] [INTERRUPTED]"); } try { processQueue(); } catch(final RuntimeException rx) {... | 1,113,871 |
public Document get(final UUID id) throws FileNotFoundException, IOException { logger.info("get(UUID)"); logger.debug(id); final Index index = readIndex(getIndexXmlFile()); return readDocument(index.lookupXmlFile(id)); } | public Document get(final UUID id) throws FileNotFoundException, IOException { logger.info("get(UUID)"); logger.debug(id); final Index index = readIndex(getIndexXmlFile()); final File xmlFile = index.lookupXmlFile(id); if(null == xmlFile) { return null; } else { return readDocument(xmlFile); } } | 1,113,872 |
protected void move(final Document document, final DocumentContent content, final Collection<DocumentVersion> versions, final File targetXmlFileDirectory) throws FileNotFoundException, IOException { final File documentXmlFile = getXmlFile(document); final File contentXmlFile = getXmlFile(document, content); fin... | protected void move(final Document document, final DocumentContent content, final Collection<DocumentVersion> versions, final File targetXmlFileDirectory) throws FileNotFoundException, IOException { final File documentXmlFile = getXmlFile(document); final File contentXmlFile = getXmlFile(document, content); fin... | 1,113,873 |
public static MappingDescriptor loadClassDescriptors(String xmlFile) { try { return loadClassDescriptors(new FileInputStream(xmlFile)); } catch (FileNotFoundException e) { throw new InitMapperException(e); } } | public static MappingDescriptor loadClassDescriptors(InputStream stream) { try { return loadClassDescriptors(new FileInputStream(xmlFile)); } catch (FileNotFoundException e) { throw new InitMapperException(e); } } | 1,113,874 |
public static MappingDescriptor loadClassDescriptors(String xmlFile) { try { return loadClassDescriptors(new FileInputStream(xmlFile)); } catch (FileNotFoundException e) { throw new InitMapperException(e); } } | public static MappingDescriptor loadClassDescriptors(String xmlFile) { try { Digester digester = new Digester(); digester.setValidating(true); digester.addObjectCreate("graffito-jcr", MappingDescriptor.class); digester.addObjectCreate("graffito-jcr/class-descriptor", ClassDescriptor.class); digester.addSetPr... | 1,113,875 |
public static MappingDescriptor loadClassDescriptors(String xmlFile) { try { return loadClassDescriptors(new FileInputStream(xmlFile)); } catch (FileNotFoundException e) { throw new InitMapperException(e); } } | public static MappingDescriptor loadClassDescriptors(String xmlFile) { try { return loadClassDescriptors(new FileInputStream(xmlFile)); } catch (Exception e) { throw new InitMapperException(e); } } | 1,113,876 |
public static MappingDescriptor loadClassDescriptors(String xmlFile) { try { return loadClassDescriptors(new FileInputStream(xmlFile)); } catch (FileNotFoundException e) { throw new InitMapperException(e); } } | public static MappingDescriptor loadClassDescriptors(String xmlFile) { try { return loadClassDescriptors(new FileInputStream(xmlFile)); } catch (FileNotFoundException e) { throw new InitMapperException("Impossible to read the xml mapping file", e); } } | 1,113,877 |
private void configureScenario(final List<Scenario> scenarios, final Environment environment, final Properties properties, final String scenarioName) { final String displayName = properties.getProperty( MessageFormat.format("demo.scenario.{0}.DisplayName", scenarioName), ... | private void configureScenario(final List<Scenario> scenarios, final Environment environment, final Properties properties, final String scenarioName) { final String displayName = properties.getProperty( MessageFormat.format("demo.scenario.{0}.DisplayName", scenarioName), ... | 1,113,879 |
private void configureScenarioScript(final Scenario scenario, final Properties properties, final String scriptName) { final String scriptPath = properties.getProperty( MessageFormat.format("demo.scenario.{0}.{1}.ScriptPath", scenario.getName(), scriptName), null); final Strin... | private void configureScenarioScript(final Scenario scenario, final Properties properties, final String scriptName) { final String scriptPath = properties.getProperty( MessageFormat.format("demo.scenario.{0}.{1}.ScriptPath", scenario.getName(), scriptName), null); final Strin... | 1,113,880 |
private void configureScenarioScript(final Scenario scenario, final Properties properties, final String scriptName) { final String scriptPath = properties.getProperty( MessageFormat.format("demo.scenario.{0}.{1}.ScriptPath", scenario.getName(), scriptName), null); final Strin... | private void configureScenarioScript(final Scenario scenario, final Properties properties, final String scriptName) { final String scriptPath = properties.getProperty( MessageFormat.format("demo.scenario.{0}.{1}.ScriptPath", scenario.getName(), scriptName), null); final Strin... | 1,113,881 |
public String exportFileName(final DocumentVersion version) { return localFileName(version); } | public String exportFileName(final DocumentVersion version) { return MessageFormat.format("{0}.{1}", FileUtil.getName(version.getName()), FileUtil.getExtension(version.getName())); } | 1,113,883 |
public MainCellDocument(final Document d) { super(d.getCreatedBy(), d.getCreatedOn(), d.getDescription(), d.getFlags(), d.getUniqueId(), d.getName(), d.getUpdatedBy(), d.getUpdatedOn()); this.imageCache = new MainCellImageCache(); setId(d.getId()); setRemote... | public MainCellDocument(final Document d) { super(d.getCreatedBy(), d.getCreatedOn(), d.getDescription(), d.getFlags(), d.getUniqueId(), d.getName(), d.getUpdatedBy(), d.getUpdatedOn()); setId(d.getId()); setRemoteInfo(d.getRemoteInfo()); setState(d.... | 1,113,884 |
public Font getTextFont() { if(hasBeenSeen()) { return BrowserConstants.DefaultFont; } else { return BrowserConstants.DefaultFontBold; } } | public Font getTextFont() { if(isSeen()) { return BrowserConstants.DefaultFont; } else { return BrowserConstants.DefaultFontBold; } } | 1,113,886 |
public void synchronize() { debug(); visiblePanels.clear(); for (final TabPanel containerPanel : containerPanels) { visiblePanels.add(containerPanel); if (isExpanded(containerPanel)) { visiblePanels.add(versionsPanels.get(containerPanel)); } ... | public void synchronize() { debug(); visiblePanels.clear(); for (final TabPanel containerPanel : containerPanels) { visiblePanels.add(containerPanel); if (isExpanded(containerPanel)) { visiblePanels.add(versionsPanels.get(containerPanel)); } ... | 1,113,887 |
public Long create(final String artifactId, final String groupId, final String version, final List<Long> libraryIds) throws XMPPException { final XMPPSession session = openSession(); try { session.setRemoteMethod("release:create"); session.setParameter("arti... | public Long create(final String artifactId, final String groupId, final String version, final List<Long> libraryIds) throws XMPPException { final XMPPSession session = openAnonymousSession(); try { session.setRemoteMethod("release:create"); session.setParame... | 1,113,888 |
public void delete(final Long releaseId) throws XMPPException { final XMPPSession session = openSession(); try { session.setRemoteMethod("release:delete"); session.setParameter("id", releaseId); session.execute(); } catch(final Exception x) { throw new XM... | public void delete(final Long releaseId) throws XMPPException { final XMPPSession session = openAnonymousSession(); try { session.setRemoteMethod("release:delete"); session.setParameter("id", releaseId); session.execute(); } catch(final Exception x) { thr... | 1,113,889 |
public Release read(final Long releaseId) throws XMPPException { final XMPPSession session = openSession(); try { session.setRemoteMethod("release:read"); session.setParameter("id", releaseId); session.execute(); if(session.containsResult()) { return extract... | public Release read(final Long releaseId) throws XMPPException { final XMPPSession session = openAnonymousSession(); try { session.setRemoteMethod("release:read"); session.setParameter("id", releaseId); session.execute(); if(session.containsResult()) { retur... | 1,113,890 |
public Release readLatest(final String artifactId, final String groupId) throws XMPPException { final XMPPSession session = openSession(); try { session.setRemoteMethod("release:readlatest"); session.setParameter("artifactId", artifactId); session.setParamet... | public Release readLatest(final String artifactId, final String groupId) throws XMPPException { final XMPPSession session = openAnonymousSession(); try { session.setRemoteMethod("release:readlatest"); session.setParameter("artifactId", artifactId); session.s... | 1,113,891 |
public List<Library> readLibraries(final Long releaseId) throws XMPPException { final XMPPSession session = openSession(); try { session.setRemoteMethod("release:readlibraries"); session.setParameter("id", releaseId); session.execute(); if(session.containsR... | public List<Library> readLibraries(final Long releaseId) throws XMPPException { final XMPPSession session = openAnonymousSession(); try { session.setRemoteMethod("release:readlibraries"); session.setParameter("id", releaseId); session.execute(); if(session.... | 1,113,892 |
public void setParameter(final String name, final String value) { assertMethod("[SET PARAMETER]"); debugParameter(name, value); xmppMethod.setParameter(name, value); } | public void setParameter(final String name, final byte[] value) { assertMethod("[SET PARAMETER]"); debugParameter(name, value); xmppMethod.setParameter(name, value); } | 1,113,893 |
public void setLongParameters(final String listName, final String name, final List<Long> longs) { assertMethod("[SET LONG PARAMTERS]"); debugLongParameters(listName, name, longs); xmppMethod.setLongParameters(listName, name, longs); } | public final void setLongParameters(final String listName, final String name, final List<Long> longs) { assertMethod("[SET LONG PARAMTERS]"); debugLongParameters(listName, name, longs); xmppMethod.setLongParameters(listName, name, longs); } | 1,113,894 |
public void setLongParameters(final String listName, final String name, final List<Long> longs) { assertMethod("[SET LONG PARAMTERS]"); debugLongParameters(listName, name, longs); xmppMethod.setLongParameters(listName, name, longs); } | public void setLongParameters(final String listName, final String name, final List<Long> longs) { assertMethod("[SET LONG PARAMETERS]"); debugLongParameters(listName, name, longs); xmppMethod.setLongParameters(listName, name, longs); } | 1,113,895 |
public void xmlDecl(String version, String encoding, Boolean standalone) { print("xmlDecl: <?xml version=\"" + version + "\""); if(encoding != null) print(" encoding=\"" + encoding); if(standalone != null) { print(" standalone=\""); if(standalone) print("yes"); else print("no"); print("\""); }... | public void xmlDecl(String version, String encoding, Boolean standalone) { print("xmlDecl: <?xml version=\"" + version + "\""); if(encoding != null) print(" encoding=\"" + encoding + "\""); if(standalone != null) { print(" standalone=\""); if(standalone) print("yes"); else print("no"); print("... | 1,113,896 |
public BrowserMenuBar(final Browser browser, final Boolean maximized) { super(); this.browser = browser; this.localization = new JFrameLocalization("BrowserWindow.Menu"); this.popupItemFactory = PopupItemFactory.getInstance(); this.resizer = new Resizer(browser, this, Bool... | public BrowserMenuBar(final Browser browser, final Boolean maximized) { super(); this.browser = browser; this.localization = new JFrameLocalization("BrowserWindow.Menu"); this.popupItemFactory = PopupItemFactory.getInstance(); this.resizer = new Resizer(browser, this, Bool... | 1,113,897 |
public BrowserMenuBar(final Browser browser, final Boolean maximized) { super(); this.browser = browser; this.localization = new JFrameLocalization("BrowserWindow.Menu"); this.popupItemFactory = PopupItemFactory.getInstance(); this.resizer = new Resizer(browser, this, Bool... | public BrowserMenuBar(final Browser browser, final Boolean maximized) { super(); this.browser = browser; this.localization = new JFrameLocalization("BrowserWindow.Menu"); this.popupItemFactory = PopupItemFactory.getInstance(); this.resizer = new Resizer(browser, this, Bool... | 1,113,898 |
public BrowserMenuBar(final Browser browser, final Boolean maximized) { super(); this.browser = browser; this.localization = new JFrameLocalization("BrowserWindow.Menu"); this.popupItemFactory = PopupItemFactory.getInstance(); this.resizer = new Resizer(browser, this, Bool... | public BrowserMenuBar(final Browser browser, final Boolean maximized) { super(); this.browser = browser; this.localization = new JFrameLocalization("BrowserWindow.Menu"); this.popupItemFactory = PopupItemFactory.getInstance(); this.resizer = new Resizer(browser, this, Bool... | 1,113,899 |
public static JMenu create(final String text, final Integer mnemonic) { return SINGLETON.doCreate(text, mnemonic); } | public static JMenu create(final String text, final Integer mnemonic) { return SINGLETON.doCreate(text, mnemonic); } | 1,113,900 |
private void syncContainerInternal(final Long containerId, final Boolean remote) { final ContainerCell container = readContainer(containerId); // if the container is null; we can assume the container has been // deleted (it's not longer being created by the provider); so we find ... | private void syncContainerInternal(final Long containerId, final Boolean remote) { final ContainerCell container = readContainer(containerId); // if the container is null; we can assume the container has been // deleted (it's not longer being created by the provider); so we find ... | 1,113,901 |
protected void triggerExpand(final TabCell mainCell) { if (mainCell instanceof ContainerCell) { final ContainerCell cc = (ContainerCell) mainCell; if(isExpanded(cc)) { cc.setExpanded(Boolean.FALSE); } else { cc.setExpanded(Boolean.TRUE... | protected void triggerExpand(final TabCell mainCell) { if (mainCell instanceof ContainerCell) { final ContainerCell cc = (ContainerCell) mainCell; if(isExpanded(cc)) { cc.setExpanded(Boolean.FALSE); browser.runApplyFlagSeenArtifact(cc.getId(), ArtifactType.CONT... | 1,113,903 |
public static String read(final File file) throws FileNotFoundException, IOException { final BufferedReader br = new BufferedReader(new FileReader(file), READ_BUFFER_SIZE); final StringBuffer sbuf = new StringBuffer(); char[] cbuf = new char[READ_BUFFER_SIZE]; int chars; while((chars = br.read(cbuf)) > 0) { ... | public static String read(final File file) throws FileNotFoundException, IOException { final BufferedReader br = new BufferedReader(new FileReader(file), READ_BUFFER_SIZE); final StringBuffer sbuf = new StringBuffer(); char[] cbuf = new char[READ_BUFFER_SIZE]; int chars; while((chars = br.read(cbuf)) > 0) { ... | 1,113,905 |
public static String read(final File file) throws FileNotFoundException, IOException { final BufferedReader br = new BufferedReader(new FileReader(file), READ_BUFFER_SIZE); final StringBuffer sbuf = new StringBuffer(); char[] cbuf = new char[READ_BUFFER_SIZE]; int chars; while((chars = br.read(cbuf)) > 0) { ... | public static String read(final File file) throws FileNotFoundException, IOException { final BufferedReader br = new BufferedReader(new FileReader(file), READ_BUFFER_SIZE); final StringBuffer sbuf = new StringBuffer(); char[] cbuf = new char[READ_BUFFER_SIZE]; int chars; while((chars = br.read(cbuf)) > 0) { ... | 1,113,906 |
SessionModelEventDispatcher(final Workspace workspace, final InternalModelFactory modelFactory, final XMPPSession xmppSession) { super(); this.logger = new Log4JWrapper(); this.modelFactory = modelFactory; logger.logApiId(); xmppSession.clearListeners(); ... | SessionModelEventDispatcher(final Workspace workspace, final InternalModelFactory modelFactory, final XMPPSession xmppSession) { super(); this.logger = new Log4JWrapper(); this.modelFactory = modelFactory; xmppSession.clearListeners(); xmppSession.add... | 1,113,907 |
SessionModelEventDispatcher(final Workspace workspace, final InternalModelFactory modelFactory, final XMPPSession xmppSession) { super(); this.logger = new Log4JWrapper(); this.modelFactory = modelFactory; logger.logApiId(); xmppSession.clearListeners(); ... | SessionModelEventDispatcher(final Workspace workspace, final InternalModelFactory modelFactory, final XMPPSession xmppSession) { super(); this.logger = new Log4JWrapper(); this.modelFactory = modelFactory; logger.logApiId(); xmppSession.clearListeners(); ... | 1,113,908 |
SessionModelEventDispatcher(final Workspace workspace, final InternalModelFactory modelFactory, final XMPPSession xmppSession) { super(); this.logger = new Log4JWrapper(); this.modelFactory = modelFactory; logger.logApiId(); xmppSession.clearListeners(); ... | SessionModelEventDispatcher(final Workspace workspace, final InternalModelFactory modelFactory, final XMPPSession xmppSession) { super(); this.logger = new Log4JWrapper(); this.modelFactory = modelFactory; logger.logApiId(); xmppSession.clearListeners(); ... | 1,113,909 |
SessionModelEventDispatcher(final Workspace workspace, final InternalModelFactory modelFactory, final XMPPSession xmppSession) { super(); this.logger = new Log4JWrapper(); this.modelFactory = modelFactory; logger.logApiId(); xmppSession.clearListeners(); ... | SessionModelEventDispatcher(final Workspace workspace, final InternalModelFactory modelFactory, final XMPPSession xmppSession) { super(); this.logger = new Log4JWrapper(); this.modelFactory = modelFactory; logger.logApiId(); xmppSession.clearListeners(); ... | 1,113,910 |
SessionModelEventDispatcher(final Workspace workspace, final InternalModelFactory modelFactory, final XMPPSession xmppSession) { super(); this.logger = new Log4JWrapper(); this.modelFactory = modelFactory; logger.logApiId(); xmppSession.clearListeners(); ... | SessionModelEventDispatcher(final Workspace workspace, final InternalModelFactory modelFactory, final XMPPSession xmppSession) { super(); this.logger = new Log4JWrapper(); this.modelFactory = modelFactory; logger.logApiId(); xmppSession.clearListeners(); ... | 1,113,911 |
SessionModelEventDispatcher(final Workspace workspace, final InternalModelFactory modelFactory, final XMPPSession xmppSession) { super(); this.logger = new Log4JWrapper(); this.modelFactory = modelFactory; logger.logApiId(); xmppSession.clearListeners(); ... | SessionModelEventDispatcher(final Workspace workspace, final InternalModelFactory modelFactory, final XMPPSession xmppSession) { super(); this.logger = new Log4JWrapper(); this.modelFactory = modelFactory; logger.logApiId(); xmppSession.clearListeners(); ... | 1,113,912 |
SessionModelEventDispatcher(final Workspace workspace, final InternalModelFactory modelFactory, final XMPPSession xmppSession) { super(); this.logger = new Log4JWrapper(); this.modelFactory = modelFactory; logger.logApiId(); xmppSession.clearListeners(); ... | SessionModelEventDispatcher(final Workspace workspace, final InternalModelFactory modelFactory, final XMPPSession xmppSession) { super(); this.logger = new Log4JWrapper(); this.modelFactory = modelFactory; logger.logApiId(); xmppSession.clearListeners(); ... | 1,113,913 |
SessionModelEventDispatcher(final Workspace workspace, final InternalModelFactory modelFactory, final XMPPSession xmppSession) { super(); this.logger = new Log4JWrapper(); this.modelFactory = modelFactory; logger.logApiId(); xmppSession.clearListeners(); ... | SessionModelEventDispatcher(final Workspace workspace, final InternalModelFactory modelFactory, final XMPPSession xmppSession) { super(); this.logger = new Log4JWrapper(); this.modelFactory = modelFactory; logger.logApiId(); xmppSession.clearListeners(); ... | 1,113,914 |
SessionModelEventDispatcher(final Workspace workspace, final InternalModelFactory modelFactory, final XMPPSession xmppSession) { super(); this.logger = new Log4JWrapper(); this.modelFactory = modelFactory; logger.logApiId(); xmppSession.clearListeners(); ... | SessionModelEventDispatcher(final Workspace workspace, final InternalModelFactory modelFactory, final XMPPSession xmppSession) { super(); this.logger = new Log4JWrapper(); this.modelFactory = modelFactory; logger.logApiId(); xmppSession.clearListeners(); ... | 1,113,915 |
SessionModelEventDispatcher(final Workspace workspace, final InternalModelFactory modelFactory, final XMPPSession xmppSession) { super(); this.logger = new Log4JWrapper(); this.modelFactory = modelFactory; logger.logApiId(); xmppSession.clearListeners(); ... | SessionModelEventDispatcher(final Workspace workspace, final InternalModelFactory modelFactory, final XMPPSession xmppSession) { super(); this.logger = new Log4JWrapper(); this.modelFactory = modelFactory; logger.logApiId(); xmppSession.clearListeners(); ... | 1,113,916 |
public Document(final Project parent, final String name, final Calendar createdOn, final String createdBy, final String keyHolder, final String description, final File directory, final UUID id, final byte[] content) { super(parent, name, description, createdOn, createdBy, keyHolder, id); this.directory = direc... | public Document(final String name, final Calendar createdOn, final String createdBy, final String keyHolder, final String description, final File directory, final UUID id, final byte[] content) { super(parent, name, description, createdOn, createdBy, keyHolder, id); this.directory = directory; this.content = ... | 1,113,918 |
public Document(final Project parent, final String name, final Calendar createdOn, final String createdBy, final String keyHolder, final String description, final File directory, final UUID id, final byte[] content) { super(parent, name, description, createdOn, createdBy, keyHolder, id); this.directory = direc... | public Document(final Project parent, final String name, final Calendar createdOn, final String createdBy, final String keyHolder, final String description, final File directory, final UUID id, final byte[] content) { super(parent, name, description, createdOn, createdBy, keyHolder, id); this.directory = direc... | 1,113,919 |
public Document(final Project parent, final String name, final Calendar createdOn, final String createdBy, final String keyHolder, final String description, final File directory, final UUID id, final byte[] content) { super(parent, name, description, createdOn, createdBy, keyHolder, id); this.directory = direc... | public Document(final Project parent, final String name, final Calendar createdOn, final String createdBy, final String keyHolder, final String description, final File directory, final UUID id, final byte[] content) { super(parent, name, description, createdOn, createdBy, keyHolder, id); this.directory = direc... | 1,113,920 |
protected String render(final Object o) { return Log4JHelper.render(logger, o); } | protected Object render(final Object o) { return Log4JHelper.render(logger, o); } | 1,113,921 |
private void saveProperties() throws IOException { properties.setProperty(PropertyNames.ParityImageName, image.getName()); PropertiesUtil.store(properties, new File(Directories.ParityInstall, FileNames.ThinkParityProperties), Sundry.ThinKParityHeader); } | private void saveProperties() throws IOException { properties.setProperty(PropertyNames.ParityImageName, image.getName()); PropertiesUtil.store(properties, new File(Directories.ParityInstall, FileNames.ThinkParityProperties), Sundry.ThinkParityHeader); } | 1,113,922 |
public Document get(final UUID id) throws FileNotFoundException, IOException { logger.info("get(UUID)"); logger.debug(id); final Index index = readIndex(getIndexXmlFile()); final File xmlFile = index.lookupXmlFile(id); if(null == xmlFile) { return null; } else { return readDocument(xmlFile); } } | public Document get(final UUID id) throws FileNotFoundException, IOException { logger.info("get(UUID)"); logger.debug(id); final Index index = readIndex(getIndexXmlFile()); final File xmlFile = index.lookupXmlFile(id); if(null == xmlFile) { return null; } else { return readDocument(xmlFile); } } | 1,113,923 |
private void initComponents() { explanationJLabel = new javax.swing.JLabel(); directoryJLabel = new javax.swing.JLabel(); directoryJTextField = new javax.swing.JTextField(); directoryJButton = new javax.swing.JButton(); openWhenDoneCheckBox = new javax.swing.JCheckBox(); ok... | private void initComponents() { explanationJLabel = new javax.swing.JLabel(); directoryJLabel = new javax.swing.JLabel(); directoryJButton = new javax.swing.JButton(); openWhenDoneCheckBox = new javax.swing.JCheckBox(); okJButton = new javax.swing.JButton(); cancelJ... | 1,113,924 |
private void initComponents() { explanationJLabel = new javax.swing.JLabel(); directoryJLabel = new javax.swing.JLabel(); directoryJTextField = new javax.swing.JTextField(); directoryJButton = new javax.swing.JButton(); openWhenDoneCheckBox = new javax.swing.JCheckBox(); ok... | private void initComponents() { explanationJLabel = new javax.swing.JLabel(); directoryJLabel = new javax.swing.JLabel(); directoryJTextField = new javax.swing.JTextField(); directoryJButton = new javax.swing.JButton(); openWhenDoneCheckBox = new javax.swing.JCheckBox(); ok... | 1,113,925 |
private void initComponents() { explanationJLabel = new javax.swing.JLabel(); directoryJLabel = new javax.swing.JLabel(); directoryJTextField = new javax.swing.JTextField(); directoryJButton = new javax.swing.JButton(); openWhenDoneCheckBox = new javax.swing.JCheckBox(); ok... | private void initComponents() { explanationJLabel = new javax.swing.JLabel(); directoryJLabel = new javax.swing.JLabel(); directoryJTextField = new javax.swing.JTextField(); directoryJButton = new javax.swing.JButton(); openWhenDoneCheckBox = new javax.swing.JCheckBox(); ok... | 1,113,926 |
private void initComponents() { java.awt.GridBagConstraints gridBagConstraints; javax.swing.JScrollPane historyListScrollPane; historyListScrollPane = ScrollPaneFactory.create(); historyList = ListFactory.create(); setLayout(new java.awt.GridBagLayout()); historyListScrollP... | private void initComponents() { java.awt.GridBagConstraints gridBagConstraints; javax.swing.JScrollPane historyListScrollPane; historyListScrollPane = ScrollPaneFactory.create(); historyList = ListFactory.create(); setLayout(new java.awt.GridBagLayout()); historyListScrollP... | 1,113,931 |
public List<User> readPublishedTo(final Long containerId, final Long versionId); | public Map<User, Calendar> readPublishedTo(final Long containerId, final Long versionId); | 1,113,934 |
protected void setUp() throws Exception { super.setUp(); login(); final ContainerModel cModel = getContainerModel(); datum = new Fixture(cModel, NAME); cModel.addListener(datum); } | protected void setUp() throws Exception { super.setUp(); final ContainerModel cModel = getContainerModel(); datum = new Fixture(cModel, NAME); cModel.addListener(datum); } | 1,113,936 |
protected void tearDown() throws Exception { getContainerModel().removeListener(datum); logout(); datum = null; super.tearDown(); } | protected void tearDown() throws Exception { getContainerModel().removeListener(datum); datum = null; super.tearDown(); } | 1,113,937 |
public void removeArtifactTeamMember(final UUID artifactUniqueId) throws SmackException { logger.info("sendDelete(UUID)"); logger.debug(artifactUniqueId); final IQArtifact delete = new IQDeleteArtifact(artifactUniqueId); delete.setType(IQ.Type.SET); sendAndConfirmPacket(delete); } | public void removeArtifactTeamMember(final UUID artifactUniqueId) throws SmackException { logger.info("sendDelete(UUID)"); logger.debug(artifactUniqueId); final IQArtifact delete = new IQDeleteArtifact(artifactUniqueId); delete.setType(IQ.Type.SET); sendAndConfirmPacket(delete); } | 1,113,939 |
BrowserTitleAvatar() { super("BrowserTitleAvatar"); this.mouseInputAdapter = new MouseInputAdapter() { int offsetX; int offsetY; public void mouseDragged(final MouseEvent e) { getController().moveMainWindow( new Point(e.getPoint().x - offsetX, e.getPoint().y - offsetY)); } public void mouseP... | BrowserTitleAvatar() { super("BrowserTitleAvatar"); this.mouseInputAdapter = new MouseInputAdapter() { int offsetX; int offsetY; public void mouseDragged(final MouseEvent e) { getController().moveMainWindow( new Point(e.getPoint().x - offsetX, e.getPoint().y - offsetY)); } public void mouseP... | 1,113,942 |
public void actionPerformed(final ActionEvent e) { getController().end(); } | public void actionPerformed(final ActionEvent e) { getController().end(); } | 1,113,943 |
BrowserWindow(final Browser browser) throws HeadlessException { super("BrowserWindow"); this.browser = browser; this.logger = Logger.getLogger(getClass()); this.persistence = PersistenceFactory.getPersistence(getClass()); final Boolean maximized = persistence.get("maximized", Boolean.FALSE); getRoot... | BrowserWindow(final Browser browser) throws HeadlessException { super("BrowserWindow"); this.browser = browser; this.logger = Logger.getLogger(getClass()); this.persistence = PersistenceFactory.getPersistence(getClass()); final Boolean maximized = persistence.get("maximized", Boolean.FALSE); getRoot... | 1,113,944 |
public void setMainWindowSize(final Dimension d) { final Dimension dFinal = new Dimension(d); // Honour the minimum window size. if (dFinal.getWidth() < Dimensions.BrowserWindow.MIN_SIZE.getWidth()) { dFinal.width = (int)Dimensions.BrowserWindow.MIN_SIZE.getWidth(); } ... | public void setMainWindowSize(final Dimension d) { final Dimension dFinal = new Dimension(d); // Honour the minimum window size. if (dFinal.getWidth() < Dimensions.BrowserWindow.MIN_SIZE.getWidth()) { dFinal.width = (int)Dimensions.BrowserWindow.MIN_SIZE.getWidth(); } ... | 1,113,945 |
public void setMainWindowSizeAndLocation(final Point p, final Dimension d) { final Point pFinal = new Point(p); final Dimension dFinal = new Dimension(d); // Honour the minimum window size. When going below the size limit in // either x or y, limit both the resize and the move in tha... | public void setMainWindowSizeAndLocation(final Point p, final Dimension d) { final Point pFinal = new Point(p); final Dimension dFinal = new Dimension(d); // Honour the minimum window size. When going below the size limit in // either x or y, limit both the resize and the move in tha... | 1,113,946 |
protected void setUp() throws Exception { super.setUp(); final Integer VERSION_COUNT = 3; final DocumentModel documentModel = getDocumentModel(OpheliaTestUser.JUNIT); data = new Vector<Fixture>(getInputFilesLength()); for(final File testFile : getInputFiles()) { final Document document = createDocum... | protected void setUp() throws Exception { super.setUp(); final Integer VERSION_COUNT = 3; final DocumentModel documentModel = getDocumentModel(OpheliaTestUser.JUNIT); data = new Vector<Fixture>(getInputFilesLength()); for(final File testFile : getInputFiles()) { final Document document = createDocum... | 1,113,947 |
private void handleArtifactClosed(final UUID artifactUniqueId, final JabberId artifactClosedBy) { SessionModelImpl.notifyArtifactClosed(artifactUniqueId, artifactClosedBy); } | private void handleArtifactClosed(final UUID artifactUniqueId, final JabberId artifactClosedBy) { try { SessionModelImpl.notifyArtifactClosed( artifactUniqueId, artifactClosedBy); } catch(final ParityException px) { unexpectedOccured(px); } catch(final RuntimeException rx) { unexpectedOccured(rx); } } | 1,113,948 |
private void handleDocumentReceived(final XMPPDocument xmppDocument) { SessionModelImpl.notifyDocumentReceived(xmppDocument); } | private void handleDocumentReceived(final XMPPDocument xmppDocument) { try { SessionModelImpl.notifyDocumentReceived(xmppDocument); } catch(final ParityException px) { unexpectedOccured(px); } catch(final RuntimeException rx) { unexpectedOccured(rx); } } | 1,113,949 |
private void handleInvitationAccepted(final JabberId acceptedBy) { SessionModelImpl.notifyInvitationAccepted(acceptedBy); } | private void handleInvitationAccepted(final JabberId acceptedBy) { try { SessionModelImpl.notifyInvitationAccepted(acceptedBy); } catch(final RuntimeException rx) { unexpectedOccured(rx); } } | 1,113,950 |
private void handleInvitationDeclined(final JabberId declinedBy) { SessionModelImpl.notifyInvitationDeclined(declinedBy); } | private void handleInvitationDeclined(final JabberId declinedBy) { try { SessionModelImpl.notifyInvitationDeclined(declinedBy); } catch(final RuntimeException rx) { unexpectedOccured(rx); } } | 1,113,951 |
private void handleInvitationExtended(final JabberId invitedBy) { SessionModelImpl.notifyInvitationExtended(invitedBy); } | private void handleInvitationExtended(final JabberId invitedBy) { try { SessionModelImpl.notifyInvitationExtended(invitedBy); } catch(final RuntimeException rx) { unexpectedOccured(rx); } } | 1,113,952 |
private void handleKeyRequestAccepted(final UUID artifactUniqueId, final JabberId acceptedBy) { SessionModelImpl.notifyKeyRequestAccepted(artifactUniqueId, acceptedBy); } | private void handleKeyRequestAccepted(final UUID artifactUniqueId, final JabberId acceptedBy) { try { SessionModelImpl.notifyKeyRequestAccepted( artifactUniqueId, acceptedBy); } catch(final ParityException px) { unexpectedOccured(px); } catch(final RuntimeException rx) { unexpectedOccured(rx); } catch(final SmackEx... | 1,113,953 |
private void handleKeyRequestDenied(final UUID artifactUniqueId, final JabberId deniedBy) { SessionModelImpl.notifyKeyRequestDenied(artifactUniqueId, deniedBy); } | private void handleKeyRequestDenied(final UUID artifactUniqueId, final JabberId deniedBy) { try { SessionModelImpl.notifyKeyRequestDenied(artifactUniqueId, deniedBy); } catch(final ParityException px) { unexpectedOccured(px); } catch(final RuntimeException rx) { unexpectedOccured(rx); } } | 1,113,954 |
private void handleKeyRequested(final UUID artifactUniqueId, final JabberId requestedBy) { SessionModelImpl.notifyKeyRequested(artifactUniqueId, requestedBy); } | private void handleKeyRequested(final UUID artifactUniqueId, final JabberId requestedBy) { try { SessionModelImpl.notifyKeyRequested(artifactUniqueId, requestedBy); } catch(final ParityException px) { unexpectedOccured(px); } catch(final RuntimeException rx) { unexpectedOccured(rx); } catch(final SmackException sx)... | 1,113,955 |
private void handleSessionEstablished() { SessionModelImpl.notifySessionEstablished(); } | private void handleSessionEstablished() { try { SessionModelImpl.notifySessionEstablished(); } catch(final RuntimeException rx) { unexpectedOccured(rx); } } | 1,113,956 |
private void handleSessionTerminated() { SessionModelImpl.notifySessionTerminated(); } | private void handleSessionTerminated() { try { SessionModelImpl.notifySessionTerminated(); } catch(final RuntimeException rx) { unexpectedOccured(rx); } } | 1,113,957 |
public void delete(final Long artifactId) throws HypersonicException { final Session session = openSession(); try { final Long[] auditIds = listAuditIds(session, artifactId); final Long[] metaDataIds = listMetaDataIds(session, auditIds); for(final Long metaDataId : metaDataIds) metaDataIO.delete(session, me... | public void delete(final Long artifactId) throws HypersonicException { final Session session = openSession(); try { final Long[] auditIds = listAuditIds(session, artifactId); final Long[] metaDataIds = listMetaDataIds(session, auditIds); for(final Long metaDataId : metaDataIds) metaDataIO.delete(session, me... | 1,113,958 |
private void notifyXMPPExtension_closeArtifact( final IQCloseArtifact artifactClose) { synchronized(xmppExtensionListenersLock) { for(final XMPPExtensionListener l : xmppExtensionListeners) { l.artifactClosed(artifactClose.getArtifactUUID()); } } } | private void notifyXMPPExtension_closeArtifact( final IQCloseArtifact artifactClose) { synchronized(xmppExtensionListenersLock) { for(final XMPPExtensionListener l : xmppExtensionListeners) { l.artifactClosed( artifactClose.getArtifactUUID(), artifactClose.getClosedBy()); } } } | 1,113,961 |
public PopupHistoryItem(final MainCellHistoryItem historyItem) { super(); this.historyItem = historyItem; this.l18n = new PopupL18n("HistoryListItem"); } | public PopupHistoryItem(final MainCellHistoryItem historyItem, final Connection connection) { super(); this.historyItem = historyItem; this.l18n = new PopupL18n("HistoryListItem"); } | 1,113,963 |
public void trigger(final Browser application, final JPopupMenu jPopupMenu, final MouseEvent e) { if(historyItem.isSetVersionId()) { jPopupMenu.add(new OpenVersion(application)); if(!historyItem.getDocument().isClosed()) { final Set<User> team = historyItem.get... | public void trigger(final Browser application, final JPopupMenu jPopupMenu, final MouseEvent e) { if(historyItem.isSetVersionId()) { jPopupMenu.add(new OpenVersion(application)); if(!historyItem.getDocument().isClosed()) { final Set<User> team = historyItem.get... | 1,113,965 |
public ListaObjetoBean dameCursosCumplan(ObjetoBean curso,ObjetoBean aula,ObjetoBean horario ){ try{ //primera hacemos una consulta para ver los cursos que cumplen los criterios del bean curso ObjetoBBDD iscurso= ConversorBeanBBDD.convierteBeanABBDD(curso); ObjetoCriterio critCurso = this.crearObjetoCriterioAde... | public ListaObjetoBean dameCursosCumplan(ObjetoBean curso,ObjetoBean aula,ObjetoBean horario ){ try{ //primera hacemos una consulta para ver los cursos que cumplen los criterios del bean curso ObjetoBBDD iscurso= ConversorBeanBBDD.convierteBeanABBDD(curso); ObjetoCriterio critCurso = this.crearObjetoCriterioAde... | 1,113,966 |
public ListaObjetoBean dameCursosCumplan(ObjetoBean curso,ObjetoBean aula,ObjetoBean horario ){ try{ //primera hacemos una consulta para ver los cursos que cumplen los criterios del bean curso ObjetoBBDD iscurso= ConversorBeanBBDD.convierteBeanABBDD(curso); ObjetoCriterio critCurso = this.crearObjetoCriterioAde... | public ListaObjetoBean dameCursosCumplan(ObjetoBean curso,ObjetoBean aula,ObjetoBean horario ){ try{ //primera hacemos una consulta para ver los cursos que cumplen los criterios del bean curso ObjetoBBDD iscurso= ConversorBeanBBDD.convierteBeanABBDD(curso); ObjetoCriterio critCurso = this.crearObjetoCriterioAde... | 1,113,967 |
protected TestCase(final String name) { super(name); this.testCaseHelper = new TestCaseHelper(this); this.logger = new Log4JWrapper(getClass()); } | protected TestCase(final String name) { super(name); this.testCaseHelper = new TestCaseHelper(this); this.logger = new Log4JWrapper("TEST_DEBUGGER"); } | 1,113,968 |
public List<User> readPublishedTo(final Long containerId, final Long versionId) { final Session session = openSession(); try { session.prepareStatement(SQL_READ_PUBLISHED_TO); session.setLong(1, containerId); session.setLong(2, versionId); session... | public Map<User, Calendar> readPublishedTo(final Long containerId, final Long versionId) { final Session session = openSession(); try { session.prepareStatement(SQL_READ_PUBLISHED_TO); session.setLong(1, containerId); session.setLong(2, versionId); ... | 1,113,969 |
public List<User> readPublishedTo(final Long containerId, final Long versionId) { final Session session = openSession(); try { session.prepareStatement(SQL_READ_PUBLISHED_TO); session.setLong(1, containerId); session.setLong(2, versionId); session... | public List<User> readPublishedTo(final Long containerId, final Long versionId) { final Session session = openSession(); try { session.prepareStatement(SQL_READ_PUBLISHED_TO); session.setLong(1, containerId); session.setLong(2, versionId); session... | 1,113,970 |
public List<User> readPublishedTo(final Long containerId, final Long versionId) { final Session session = openSession(); try { session.prepareStatement(SQL_READ_PUBLISHED_TO); session.setLong(1, containerId); session.setLong(2, versionId); session... | public List<User> readPublishedTo(final Long containerId, final Long versionId) { final Session session = openSession(); try { session.prepareStatement(SQL_READ_PUBLISHED_TO); session.setLong(1, containerId); session.setLong(2, versionId); session... | 1,113,971 |
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,113,972 |
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,113,973 |
static <T extends Artifact, U extends ArtifactVersion> ArchiveReader<T, U> emptyReader() { return new ArchiveReader<T, U>() { @Override public List<T> read() { return Collections.emptyList(); } @Override public T read(final UUID uniqueId) ... | static <T extends Artifact, U extends ArtifactVersion> ArchiveReader<T, U> emptyReader() { return new ArchiveReader<T, U>() { @Override public List<T> read() { return Collections.emptyList(); } @Override public T read(final UUID uniqueId) ... | 1,113,974 |
public void installResizer() { if (null==this.resizer) { this.resizer = new Resizer(getController(), this, isSupportMouseMove(), getResizeEdges()); final List<Component> componentsThatSupportMouseMove = getComponentsThatSupportMouseMove(); if (null!=componentsThatSupportMouse... | public void installResizer() { if (null==this.resizer) { this.resizer = new Resizer(getController(), this, isSupportMouseMove(), getResizeEdges()); final List<Component> componentsThatSupportMouseMove = getComponentsThatSupportMouseMove(); if (null!=componentsThatSupportMouse... | 1,113,975 |
private void doRun() throws IOException { final InputStream stream = streamServer.openInputStream(streamSession, streamId); StreamUtil.copy(stream, output, streamSession.getBufferSize()); } | private void doRun() throws IOException { final InputStream stream = streamServer.openInputStream(streamSession, streamId); int len; final byte[] b = new byte[streamSession.getBufferSize()]; try { while((len = stream.read(b)) > 0) { logger.logDebug("{0}/{1}", len, total); output.write(b, 0,... | 1,113,977 |
public static Listable[] queryListMultiple(Frame parent, String title, String message, String helpString, String okButton, boolean hasDefault, ListableVector vector, boolean[] selected) { if (vector==null) return null; Listable[] names = vector.getListables(); if (names==null) return null; ListDialog id = new... | public static Listable[] queryListMultiple(Frame parent, String title, String message, String helpString, String okButton, boolean hasDefault, ListableVector vector, boolean[] selected) { if (vector==null) return null; Listable[] names = vector.getListables(); if (names==null) return null; ListDialog id = new... | 1,113,978 |
protected void setUp() throws Exception { super.setUp(); final File inputFile = getInputFile("JUnitTestFramework.txt"); final InternalDocumentModel documentModel = getDocumentModel(OpheliaTestUser.JUNIT); final Document document = createDocument(OpheliaTestUser.JUNIT, inputFile); final File modFile = modify... | protected void setUp() throws Exception { super.setUp(); final File inputFile = getInputFile("JUnitTestFramework.txt"); final InternalDocumentModel documentModel = getDocumentModel(OpheliaTestUser.JUNIT); final Document document = createDocument(OpheliaTestUser.JUNIT, inputFile); final File modFile = modify... | 1,113,979 |
public void testCreateVersion() { try { DocumentVersion version; DocumentVersionContent versionContent; for(Fixture datum : data) { version = datum.documentModel.createVersion( datum.document, datum.action, datum.actionData); assertNotNull(version); assertEquals(datum.action, version.getAction());... | public void testCreateVersion() { try { DocumentVersion version; DocumentVersionContent versionContent; for(Fixture datum : data) { datum.documentModel.createVersion( datum.document, datum.action, datum.actionData); assertNotNull(version); assertEquals(datum.action, version.getAction()); assert... | 1,113,980 |
static void initialize() { System.setProperty("sun.awt.noerasebackground", "true"); System.setProperty("parity.insecure", "true"); LoggerFactory.getLogger(Browser2PlatformInitializer.class); ModelFactory.getInstance().initialize(); EventDispatcher.getInstance().initialize(); // Set the application lnf try { UIM... | static void initialize() { System.setProperty("sun.awt.noerasebackground", "true"); System.setProperty("parity.insecure", "true"); LoggerFactory.getLogger(Browser2PlatformInitializer.class); ModelFactory.getInstance().initialize(); // Set the application lnf try { UIManager.setLookAndFeel(new WindowsLookAndFee... | 1,113,982 |
public void testDelete() { final Container c = createContainer(datum.junit, NAME); getContainerModel(datum.junit).addListener(datum); logger.logInfo("Deleting container \"{0}\" as \"{1}.\"", c.getName(), datum.junit_x.getSimpleUsername()); getContainerModel(datum.junit).de... | public void testDelete() { final Container c = createContainer(datum.junit, NAME); getContainerModel(datum.junit).addListener(datum); logger.logInfo("Deleting container \"{0}\" as \"{1}.\"", c.getName(), datum.junit_x.getSimpleUsername()); getContainerModel(datum.junit).de... | 1,113,983 |
public void testDeletePostAdd() { final Container c = createContainer(datum.junit, NAME); addDocument(datum.junit, c.getId(), "JUnitTestFramework.doc"); addDocument(datum.junit, c.getId(), "JUnitTestFramework.odt"); addDocument(datum.junit, c.getId(), "JUnitTestFramework.pdf"); ad... | public void testDeletePostAdd() { final Container c = createContainer(datum.junit, NAME); addDocument(datum.junit, c.getId(), "JUnitTestFramework.doc"); addDocument(datum.junit, c.getId(), "JUnitTestFramework.odt"); addDocument(datum.junit, c.getId(), "JUnitTestFramework.pdf"); ad... | 1,113,984 |
public void testDeletePostMultiPublish() { final Container c = createContainer(datum.junit, NAME); final Document d_doc = addDocument(datum.junit, c.getId(), "JUnitTestFramework.doc"); final Document d_odt = addDocument(datum.junit, c.getId(), "JUnitTestFramework.odt"); final Document d_... | public void testDeletePostMultiPublish() { final Container c = createContainer(datum.junit, NAME); final Document d_doc = addDocument(datum.junit, c.getId(), "JUnitTestFramework.doc"); final Document d_odt = addDocument(datum.junit, c.getId(), "JUnitTestFramework.odt"); final Document d_... | 1,113,985 |
public void testDeletePostPublish() { final Container c = createContainer(datum.junit, NAME); addDocument(datum.junit, c.getId(), "JUnitTestFramework.doc"); addDocument(datum.junit, c.getId(), "JUnitTestFramework.odt"); addDocument(datum.junit, c.getId(), "JUnitTestFramework.pdf"); ... | public void testDeletePostPublish() { final Container c = createContainer(datum.junit, NAME); addDocument(datum.junit, c.getId(), "JUnitTestFramework.doc"); addDocument(datum.junit, c.getId(), "JUnitTestFramework.odt"); addDocument(datum.junit, c.getId(), "JUnitTestFramework.pdf"); ... | 1,113,986 |
public void testDeletePostPublishAsRecipient() { final Container c = createContainer(datum.junit, NAME); addDocument(datum.junit, c.getId(), "JUnitTestFramework.doc"); addDocument(datum.junit, c.getId(), "JUnitTestFramework.odt"); addDocument(datum.junit, c.getId(), "JUnitTestFramework.p... | public void testDeletePostPublishAsRecipient() { final Container c = createContainer(datum.junit, NAME); addDocument(datum.junit, c.getId(), "JUnitTestFramework.doc"); addDocument(datum.junit, c.getId(), "JUnitTestFramework.odt"); addDocument(datum.junit, c.getId(), "JUnitTestFramework.p... | 1,113,987 |
void addPanel(final AbstractJPanel jPanel) { final GridBagConstraints c = new GridBagConstraints(); c.fill = GridBagConstraints.BOTH; c.weightx = 1; add(new WindowTitle(), c.clone()); jPanels.add(jPanel); ac.gridy++; add((Component) jPanel, ac.clone()); } | void addPanel(final AbstractJPanel jPanel) { final GridBagConstraints c = new GridBagConstraints(); c.fill = GridBagConstraints.BOTH; c.weightx = 1; jPanels.add(jPanel); ac.gridy++; add((Component) jPanel, ac.clone()); } | 1,113,988 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.