file_name
stringlengths
6
86
file_path
stringlengths
45
249
content
stringlengths
47
6.26M
file_size
int64
47
6.26M
language
stringclasses
1 value
extension
stringclasses
1 value
repo_name
stringclasses
767 values
repo_stars
int64
8
14.4k
repo_forks
int64
0
1.17k
repo_open_issues
int64
0
788
repo_created_at
stringclasses
767 values
repo_pushed_at
stringclasses
767 values
BeanThreadScope.java
/FileExtraction/Java_unseen/dataconsulting-pl_APEX-Low-Test-Framework/src/main/java/pl/dataconsulting/APEX_TAF/framework/annotation/BeanThreadScope.java
package pl.dataconsulting.APEX_TAF.framework.annotation; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Lazy; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import java.lang.annotation.*; @Bean @Scope("driversco...
441
Java
.java
dataconsulting-pl/APEX-Low-Test-Framework
11
0
13
2022-06-28T07:57:50Z
2023-02-27T10:25:42Z
APEXComponent.java
/FileExtraction/Java_unseen/dataconsulting-pl_APEX-Low-Test-Framework/src/main/java/pl/dataconsulting/APEX_TAF/framework/annotation/APEXComponent.java
package pl.dataconsulting.APEX_TAF.framework.annotation; import org.springframework.context.annotation.Lazy; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component; import java.lang.annotation.*; @Lazy @Component @Scope("prototype") @Documented @Target({ElementType.TYPE}...
394
Java
.java
dataconsulting-pl/APEX-Low-Test-Framework
11
0
13
2022-06-28T07:57:50Z
2023-02-27T10:25:42Z
WebDriverConfig.java
/FileExtraction/Java_unseen/dataconsulting-pl_APEX-Low-Test-Framework/src/main/java/pl/dataconsulting/APEX_TAF/framework/config/WebDriverConfig.java
package pl.dataconsulting.APEX_TAF.framework.config; import io.github.bonigarcia.wdm.WebDriverManager; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.support.ui.WebDriverWait; import org.springframework....
1,589
Java
.java
dataconsulting-pl/APEX-Low-Test-Framework
11
0
13
2022-06-28T07:57:50Z
2023-02-27T10:25:42Z
ScreenShotService.java
/FileExtraction/Java_unseen/dataconsulting-pl_APEX-Low-Test-Framework/src/main/java/pl/dataconsulting/APEX_TAF/framework/service/ScreenShotService.java
package pl.dataconsulting.APEX_TAF.framework.service; import org.openqa.selenium.OutputType; import org.openqa.selenium.TakesScreenshot; import org.openqa.selenium.WebDriver; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframe...
1,203
Java
.java
dataconsulting-pl/APEX-Low-Test-Framework
11
0
13
2022-06-28T07:57:50Z
2023-02-27T10:25:42Z
Asserts.java
/FileExtraction/Java_unseen/dataconsulting-pl_APEX-Low-Test-Framework/src/main/java/pl/dataconsulting/APEX_TAF/framework/util/Asserts.java
package pl.dataconsulting.APEX_TAF.framework.util; import org.springframework.stereotype.Component; import org.testng.Assert; @Component public class Asserts { public void assertEqualRegexp(String action, String fieldName, String expected, String was) { if (!was.matches(expected)) { setFail(ac...
756
Java
.java
dataconsulting-pl/APEX-Low-Test-Framework
11
0
13
2022-06-28T07:57:50Z
2023-02-27T10:25:42Z
Application.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/Application.java
package browser; import browser.rx.service.InnerMqService; import browser.ui.MainFrame; import javax.swing.*; public class Application { public static void main(String[] args) { // 设置主题 try { UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); // UIManage...
927
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
Cache.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/common/Cache.java
package browser.common; import java.io.File; import java.io.IOException; import java.util.Iterator; import java.util.LinkedHashMap; import java.util.Map; import browser.assets.entity.History; import browser.assets.entity.Setting; import browser.util.BeanUtils; import browser.util.CommonUtils; import com.alibaba.fast...
2,688
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
Static.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/common/Static.java
package browser.common; import browser.util.CommonUtils; public class Static { public static final boolean IS_Mac = CommonUtils.isMac(); public static final boolean IS_Windows = CommonUtils.isWindows(); public static final boolean IS_Windows_10 = CommonUtils.isWindows10(); public static final boolean IS_Windows_...
1,314
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
Script.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/common/Script.java
package browser.common; public class Script { public static String getIconHref(int browserId) { return "" + "{" + "let sendData = 'get_favicon_href__';" + "let links = document.getElementsByTagName('link');" + "if (links != null) {" + ...
1,653
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
Setting.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/assets/entity/Setting.java
package browser.assets.entity; import browser.common.Static; import lombok.Data; @Data public class Setting { private String mainPageAddress; private Integer defaultWidth; private Integer defaultHeight; private Boolean isMaxWindow; public Setting() { } public Setting(String type) { switch (type) { case...
577
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
History.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/assets/entity/History.java
package browser.assets.entity; import java.io.Serializable; import lombok.Data; @Data public class History implements Serializable { private String time; private String fullUrl; private String host; private String title; }
232
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
MainFrame.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/ui/MainFrame.java
package browser.ui; import browser.assets.entity.History; import browser.common.Cache; import browser.common.Static; import browser.rx.TOPIC; import browser.rx.client.InnerMqClient; import browser.rx.service.InnerMqService; import browser.ui.component.menu.HistoryMenu; import browser.ui.component.menu.SettingMenu; imp...
4,956
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
TabFactory.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/ui/factory/TabFactory.java
package browser.ui.factory; import browser.ui.component.tab.Tab; import browser.ui.component.tab.TabCaption; import browser.ui.component.tab.TabContent; import browser.ui.component.tab.TabbedPane; import javax.swing.SwingUtilities; import java.util.Random; public final class TabFactory { /* 异步添加Tab */ publi...
1,232
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
HistoryFactory.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/ui/factory/HistoryFactory.java
package browser.ui.factory; public class HistoryFactory { /** 添加历史记录 */ public static void addHistory(String timeValue) { } /** 删除某项历史记录 */ public static void removeSingleHistory(String timeValue) { } /** 删除全部历史记录 */ public static void removeAllHistory() { } /** 保存历史记录 */ private static void saveHist...
405
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
ToolMenu.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/ui/component/menu/ToolMenu.java
package browser.ui.component.menu; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import javax.swing.JMenuItem; import javax.swing.JPopupMenu; public class ToolMenu extends JPopupMenu { public ToolMenu() { JMenuItem htmlItem = new JMenuItem("查看html代码"); htmlItem.addMouseListener(new Mou...
439
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
SettingMenu.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/ui/component/menu/SettingMenu.java
package browser.ui.component.menu; import javax.swing.JMenuItem; import javax.swing.JPopupMenu; public class SettingMenu extends JPopupMenu { public SettingMenu() { JMenuItem settingItem = new JMenuItem("设置"); this.add(settingItem); JMenuItem aboutItem = new JMenuItem("关于"); this.add(aboutItem); }...
332
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
HistoryMenu.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/ui/component/menu/HistoryMenu.java
package browser.ui.component.menu; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import java.io.File; import java.io.IOException; import java.util.LinkedHashMap; import javax.swing.JMenuItem; import javax.swing.JOptionPane; import javax.swing.JPopupMenu; import browser.assets.entity.History; ...
3,859
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
HistoryMenuItem.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/ui/component/menu/item/HistoryMenuItem.java
package browser.ui.component.menu.item; import java.awt.BorderLayout; import java.awt.Component; import java.awt.Cursor; import java.awt.Dimension; import java.awt.Image; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import java.io.File; import javax.swing.ImageIcon; import javax.swing.JLabel;...
4,267
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
ToolBar.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/ui/component/bar/ToolBar.java
package browser.ui.component.bar; import java.awt.*; import java.awt.event.*; import java.util.Objects; import javax.swing.BorderFactory; import javax.swing.GroupLayout; import javax.swing.ImageIcon; import javax.swing.JButton; import javax.swing.JPanel; import javax.swing.JTextField; import javax.swing.GroupLayout.A...
9,029
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
TabCaptions.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/ui/component/tab/TabCaptions.java
package browser.ui.component.tab; import java.awt.Color; import java.io.Serial; import javax.swing.Box; import javax.swing.BoxLayout; import javax.swing.JComponent; import javax.swing.JPanel; public class TabCaptions extends JPanel { @Serial private static final long serialVersionUID = 7549971752593265070L; ...
1,630
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
TabButton.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/ui/component/tab/TabButton.java
package browser.ui.component.tab; import javax.swing.BorderFactory; import javax.swing.Icon; import javax.swing.JButton; public class TabButton extends JButton { private static final long serialVersionUID = -5634035547632048385L; public TabButton(Icon icon, String toolTipText) { setIcon(icon); set...
511
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
TabContent.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/ui/component/tab/TabContent.java
package browser.ui.component.tab; import browser.ui.component.browser.BrowserPanel; import browser.ui.component.bar.ToolBar; import java.awt.BorderLayout; import javax.swing.JPanel; public class TabContent extends JPanel { private String compId; private ToolBar toolBar; private BrowserPanel browserPane...
1,001
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
TabCaption.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/ui/component/tab/TabCaption.java
package browser.ui.component.tab; import java.awt.BorderLayout; import java.awt.Color; import java.awt.Dimension; import java.awt.GradientPaint; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.Image; import java.awt.RenderingHints; import java.awt.event.MouseAdapter; import java.awt.event.MouseEv...
7,515
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
TabbedPane.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/ui/component/tab/TabbedPane.java
package browser.ui.component.tab; import browser.common.Cache; import browser.rx.TOPIC; import browser.rx.service.InnerMqService; import browser.util.CommonUtils; import java.awt.BorderLayout; import java.awt.Window; import java.beans.PropertyChangeEvent; import java.beans.PropertyChangeListener; import java.util.Arr...
5,120
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
Tab.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/ui/component/tab/Tab.java
package browser.ui.component.tab; public class Tab { private final TabCaption caption; private final TabContent content; public Tab(TabCaption caption, TabContent content) { this.caption = caption; this.content = content; } public TabCaption getCaption() { return caption;...
398
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
BrowserPanel.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/ui/component/browser/BrowserPanel.java
package browser.ui.component.browser; import browser.core.ChromiumEmbeddedCoreInst; import browser.rx.TOPIC; import browser.rx.client.InnerMqClient; import browser.rx.service.InnerMqService; import org.cef.CefClient; import org.cef.browser.CefBrowser; import org.cef.handler.CefFocusHandlerAdapter; import javax.swing....
4,002
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
TOPIC.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/rx/TOPIC.java
package browser.rx; public enum TOPIC { ADDRESS_FOCUS, BROWSER_FOCUS, OPEN_NEW_PAGE, OPEN_DEV_TOOL, CHANGE_ICON, CHANGE_TITLE, CHANGE_URL, RELOAD, LOAD_URL, }
201
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
SubscribeCallback.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/rx/client/SubscribeCallback.java
package browser.rx.client; public interface SubscribeCallback { void exec(Object msg); }
96
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
InnerMqClient.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/rx/client/InnerMqClient.java
package browser.rx.client; import browser.rx.TOPIC; import io.reactivex.rxjava3.subjects.PublishSubject; public interface InnerMqClient { PublishSubject<Object> sub(TOPIC topic, SubscribeCallback callback); String getId(); void pub(TOPIC topic, Object msg); void destroy(); }
299
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
InnerMqClientImpl.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/rx/client/impl/InnerMqClientImpl.java
package browser.rx.client.impl; import browser.rx.TOPIC; import browser.rx.client.InnerMqClient; import browser.rx.client.SubscribeCallback; import io.reactivex.rxjava3.disposables.CompositeDisposable; import io.reactivex.rxjava3.subjects.PublishSubject; import lombok.Getter; import java.util.HashMap; import java.uti...
1,554
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
InnerMqService.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/rx/service/InnerMqService.java
package browser.rx.service; import browser.rx.TOPIC; import browser.rx.client.InnerMqClient; import browser.rx.client.impl.InnerMqClientImpl; import java.util.HashMap; import java.util.Map; public class InnerMqService { private static volatile InnerMqService instance; public Map<String, InnerMqClient> clie...
2,012
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
ChromiumEmbeddedCoreInst.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/core/ChromiumEmbeddedCoreInst.java
package browser.core; import browser.core.handler.*; import com.jetbrains.cef.JCefAppConfig; import org.cef.CefApp; import org.cef.CefClient; import org.cef.CefSettings; import org.cef.browser.CefBrowser; import org.cef.browser.CefMessageRouter; import org.cef.browser.CefRendering; public class ChromiumEmbeddedCoreIn...
2,371
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
LifeSpanHandler.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/core/handler/LifeSpanHandler.java
package browser.core.handler; import browser.rx.TOPIC; import browser.rx.service.InnerMqService; import org.cef.browser.CefBrowser; import org.cef.browser.CefFrame; import org.cef.handler.CefLifeSpanHandlerAdapter; public class LifeSpanHandler extends CefLifeSpanHandlerAdapter { private final InnerMqService inne...
706
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
MessageRouterHandler.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/core/handler/MessageRouterHandler.java
package browser.core.handler; import browser.rx.TOPIC; import browser.rx.service.InnerMqService; import browser.util.IconFinder; import org.cef.browser.CefBrowser; import org.cef.browser.CefFrame; import org.cef.callback.CefQueryCallback; import org.cef.handler.CefMessageRouterHandlerAdapter; import javax.swing.*; p...
1,468
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
MenuHandler.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/core/handler/MenuHandler.java
package browser.core.handler; import browser.rx.TOPIC; import browser.rx.service.InnerMqService; import org.cef.browser.CefBrowser; import org.cef.browser.CefFrame; import org.cef.callback.CefContextMenuParams; import org.cef.callback.CefMenuModel; import org.cef.callback.CefMenuModel.MenuId; import org.cef.handler.Ce...
2,460
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
LoadHandler.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/core/handler/LoadHandler.java
package browser.core.handler; import browser.common.Script; import browser.rx.TOPIC; import browser.rx.service.InnerMqService; import org.cef.browser.CefBrowser; import org.cef.browser.CefFrame; import org.cef.handler.CefLoadHandler; import org.cef.handler.CefLoadHandlerAdapter; import org.cef.network.CefRequest; pub...
1,632
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
FontUtils.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/util/FontUtils.java
package browser.util; import java.awt.*; import java.io.BufferedInputStream; import java.io.IOException; import java.io.InputStream; public class FontUtils { // 微软雅黑 public static Font MicrosoftYahei(float size) { return getLocalFont("MicrosoftYahei.ttf", Font.PLAIN, size); } // 小米兰亭 pu...
1,660
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
DomUtils.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/util/DomUtils.java
package browser.util; import org.jsoup.Jsoup; import org.jsoup.nodes.Document; import org.jsoup.nodes.Element; import org.jsoup.select.Elements; public class DomUtils { public static String getTitle(String html) { Document doc = Jsoup.parse(html); Elements elements = doc.getElementsByTag("title")...
440
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
CommonUtils.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/util/CommonUtils.java
package browser.util; import java.awt.Toolkit; import java.awt.datatransfer.Clipboard; import java.awt.datatransfer.StringSelection; import java.awt.datatransfer.Transferable; import java.io.*; import java.net.HttpURLConnection; import java.net.URL; import java.util.Objects; import javax.swing.Icon; import javax.swin...
2,883
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
IconFinder.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/util/IconFinder.java
package browser.util; import com.ctreber.aclib.image.ico.ICOFile; import org.apache.commons.io.FileUtils; import javax.imageio.ImageIO; import java.awt.image.BufferedImage; import java.io.*; import java.net.MalformedURLException; import java.net.URL; public class IconFinder { public static String saveAndGetIcon...
2,909
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
BeanUtils.java
/FileExtraction/Java_unseen/DLand-Team_java-browser/Code/src/browser/util/BeanUtils.java
package browser.util; import java.lang.reflect.Field; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; public class BeanUtils { public static void copy(Object target, Object source) throws Exception { /* * 分别获得源对象和目标对象的Class类型对象,Class对象是整个反射机制的源头和灵魂! * * Class对象是在类加载...
2,811
Java
.java
DLand-Team/java-browser
9
3
0
2022-12-29T12:36:36Z
2023-01-02T08:32:11Z
TopicMapConfigurationPanel.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/TopicMapConfigurationPanel.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
1,357
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
TopicMapReadOnlyException.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/TopicMapReadOnlyException.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
1,140
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
Association.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/Association.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
2,483
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
SchemaBox.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/SchemaBox.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
16,671
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
TopicTools.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/TopicTools.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
43,547
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
TopicMapStatOptions.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/TopicMapStatOptions.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
4,022
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
TopicInUseException.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/TopicInUseException.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
1,928
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
TopicMapException.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/TopicMapException.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
1,355
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
TopicMapHashCode.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/TopicMapHashCode.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Founda...
2,861
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
Locator.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/Locator.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
2,689
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
TopicMapLogger.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/TopicMapLogger.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
1,288
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
TopicHashMap.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/TopicHashMap.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
4,563
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
TopicMapType.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/TopicMapType.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
3,841
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
TopicMapTypeManager.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/TopicMapTypeManager.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
3,285
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
XTMPSI.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/XTMPSI.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
4,350
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
TopicMap.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/TopicMap.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
104,304
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
TopicHashSet.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/TopicHashSet.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
2,675
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
TopicRemovedException.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/TopicRemovedException.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
1,197
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
TopicMapStatData.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/TopicMapStatData.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
2,140
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
TopicIterator.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/TopicIterator.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundatio...
1,669
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
TopicMapListener.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/TopicMapListener.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
5,476
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
SimpleTopicMapLogger.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/SimpleTopicMapLogger.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
1,777
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
TMBox.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/TMBox.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
66,578
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
Test.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/Test.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
2,118
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
Topic.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/Topic.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
17,909
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
TopicMapListenerAdapter.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/TopicMapListenerAdapter.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
2,659
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
TopicMapSearchOptions.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/TopicMapSearchOptions.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
2,519
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
W2TAssociation.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/wandora2tmapi/W2TAssociation.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2013 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
5,240
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
W2TName.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/wandora2tmapi/W2TName.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2013 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
5,859
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
W2TLocator.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/wandora2tmapi/W2TLocator.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2013 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
2,040
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
W2TRole.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/wandora2tmapi/W2TRole.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2013 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
3,665
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
W2TOccurrence.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/wandora2tmapi/W2TOccurrence.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2013 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
5,888
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
AbstractDatatypeAware.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/wandora2tmapi/AbstractDatatypeAware.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2013 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
2,757
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
W2TVariant.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/wandora2tmapi/W2TVariant.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2013 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
4,826
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
W2TTopic.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/wandora2tmapi/W2TTopic.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2013 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
15,391
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
W2TTopicMap.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/wandora2tmapi/W2TTopicMap.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2013 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
26,407
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
T2WAssociation.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/tmapi2wandora/T2WAssociation.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
3,880
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
T2WTopic.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/tmapi2wandora/T2WTopic.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
13,355
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
T2WTopicMap.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/tmapi2wandora/T2WTopicMap.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
9,679
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
XTMParser2.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/parser/XTMParser2.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
36,817
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
XTMAdaptiveParser.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/parser/XTMAdaptiveParser.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
5,362
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
LTMParser.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/parser/LTMParser.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
55,707
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
JTMParser.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/parser/JTMParser.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
29,340
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
DatabaseTopicMap.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/database2/DatabaseTopicMap.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
48,027
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
DatabaseAssociation.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/database2/DatabaseAssociation.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
11,851
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
DatabaseTopic.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/database2/DatabaseTopic.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
49,757
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
TopicMapSQLException.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/database2/TopicMapSQLException.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
1,576
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
WeakTopicIndex.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/database2/WeakTopicIndex.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
24,800
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
DatabaseTopicMapType.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/database2/DatabaseTopicMapType.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
8,848
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
AbstractDatabaseTopicMap.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/database2/AbstractDatabaseTopicMap.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
21,424
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
DatabaseConfiguration.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/database2/DatabaseConfiguration.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
6,074
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
BasicDiffOutput.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/diff/BasicDiffOutput.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
2,689
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
HTMLDiffEntryFormatter.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/diff/HTMLDiffEntryFormatter.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
9,433
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
TopicMapDiff.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/diff/TopicMapDiff.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
54,324
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
ListDiffOutput.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/diff/ListDiffOutput.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
1,564
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
PatchDiffParser.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/diff/PatchDiffParser.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Founda...
10,212
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
DiffOutput.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/diff/DiffOutput.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
1,185
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
DiffEntryFormatter.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/diff/DiffEntryFormatter.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
1,270
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z
PlainTextDiffEntryFormatter.java
/FileExtraction/Java_unseen/wandora-team_wandora/src/main/java/org/wandora/topicmap/diff/PlainTextDiffEntryFormatter.java
/* * WANDORA * Knowledge Extraction, Management, and Publishing Application * http://wandora.org * * Copyright (C) 2004-2023 Wandora Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
9,292
Java
.java
wandora-team/wandora
126
26
0
2014-06-30T10:25:42Z
2023-09-09T07:13:29Z