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
Main.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/Main.java
package java_cup; import java.util.Enumeration; import java.io.*; /** This class serves as the main driver for the JavaCup system. * It accepts user options and coordinates overall control flow. * The main flow of control includes the following activities: * <ul> * <li> Parse user supplied arguments and ...
31,598
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
symbol_set.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/symbol_set.java
package java_cup; import java.util.Hashtable; import java.util.Enumeration; /** This class represents a set of symbols and provides a series of * set operations to manipulate them. * * @see java_cup.symbol * @version last updated: 11/25/95 * @author Scott Hudson */ public class symbol_set { /*-------...
6,570
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
version.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/version.java
package java_cup; /** This class contains version and authorship information. * It contains only static data elements and basically just a central * place to put this kind of information so it can be updated easily * for each release. * * Version numbers used here are broken into 3 parts: major, minor, a...
1,963
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
production.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/production.java
package java_cup; import java.util.Hashtable; import java.util.Enumeration; /** This class represents a production in the grammar. It contains * a LHS non terminal, and an array of RHS symbols. As various * transformations are done on the RHS of the production, it may shrink. * As a result a separate length...
24,176
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
production_part.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/production_part.java
package java_cup; /** This class represents one part (either a symbol or an action) of a * production. In this base class it contains only an optional label * string that the user can use to refer to the part within actions.<p> * * This is an abstract class. * * @see java_cup.production * @version las...
2,756
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
parser.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/parser.java
//---------------------------------------------------- // The following code was generated by CUP v0.10k // Sun Jul 25 13:35:26 EDT 1999 //---------------------------------------------------- package java_cup; import java_cup.runtime.*; import java.util.Hashtable; /** CUP v0.10k generated parser. * @version Sun J...
95,111
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
lalr_transition.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/lalr_transition.java
package java_cup; /** This class represents a transition in an LALR viable prefix recognition * machine. Transitions can be under terminals for non-terminals. They are * internally linked together into singly linked lists containing all the * transitions out of a single state via the _next field. * * @see ...
3,088
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
lr_item_core.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/lr_item_core.java
package java_cup; /** The "core" of an LR item. This includes a production and the position * of a marker (the "dot") within the production. Typically item cores * are written using a production with an embedded "dot" to indicate their * position. For example: <pre> * A ::= B * C d E * </pre> * Th...
8,333
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
internal_error.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/internal_error.java
package java_cup; /** Exception subclass for reporting internal errors in JavaCup. */ public class internal_error extends Exception { /** Constructor with a message */ public internal_error(String msg) { super(msg); } /** Method called to do a forced error exit on an internal error for ca...
573
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
terminal_set.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/terminal_set.java
package java_cup; import java.util.BitSet; /** A set of terminals implemented as a bitset. * @version last updated: 11/25/95 * @author Scott Hudson */ public class terminal_set { /*-----------------------------------------------------------*/ /*--- Constructor(s) ----------------------------------------*/ ...
6,874
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
parse_action.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/parse_action.java
package java_cup; /** This class serves as the base class for entries in a parse action table. * Full entries will either be SHIFT(state_num), REDUCE(production), NONASSOC, * or ERROR. Objects of this base class will default to ERROR, while * the other three types will be represented by subclasses. * * @s...
2,867
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
lalr_state.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/lalr_state.java
package java_cup; import java.util.Hashtable; import java.util.Enumeration; import java.util.Stack; /** This class represents a state in the LALR viable prefix recognition machine. * A state consists of an LALR item set and a set of transitions to other * states under terminal and non-terminal symbols. Each st...
31,583
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
lexer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/lexer.java
package java_cup; import java_cup.runtime.Symbol; import java.util.Hashtable; /** This class implements a small scanner (aka lexical analyzer or lexer) for * the JavaCup specification. This scanner reads characters from standard * input (System.in) and returns integers corresponding to the terminal * number ...
18,202
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
lalr_item.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/lalr_item.java
package java_cup; import java.util.Stack; import java.util.Enumeration; /** This class represents an LALR item. Each LALR item consists of * a production, a "dot" at a position within that production, and * a set of lookahead symbols (terminal). (The first two of these parts * are provide by the super class)....
10,920
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
action_part.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/action_part.java
package java_cup; /** * This class represents a part of a production which contains an * action. These are eventually eliminated from productions and converted * to trailing actions by factoring out with a production that derives the * empty string (and ends with this action). * * @see java_cup.production * ...
2,963
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
sym.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/sym.java
//---------------------------------------------------- // The following code was generated by CUP v0.10k // Sun Jul 25 13:35:26 EDT 1999 //---------------------------------------------------- package java_cup; /** CUP generated class containing symbol constants. */ public class sym { /* terminals */ public stati...
1,514
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
parse_reduce_table.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/parse_reduce_table.java
package java_cup; import java.util.Enumeration; /** This class represents the complete "reduce-goto" table of the parser. * It has one row for each state in the parse machines, and a column for * each terminal symbol. Each entry contains a state number to shift to * as the last step of a reduce. * * @see ...
3,043
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
symbol.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/symbol.java
package java_cup; /** This abstract class serves as the base class for grammar symbols (i.e., * both terminals and non-terminals). Each symbol has a name string, and * a string giving the type of object that the symbol will be represented by * on the runtime parse stack. In addition, each symbol maintains a use c...
3,724
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
reduce_action.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/reduce_action.java
package java_cup; /** This class represents a reduce action within the parse table. * The action simply stores the production that it reduces with and * responds to queries about its type. * * @version last updated: 11/25/95 * @author Scott Hudson */ public class reduce_action extends parse_action { /*...
2,513
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
lr_parser.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/runtime/lr_parser.java
package java_cup.runtime; import java.util.Stack; /** This class implements a skeleton table driven LR parser. In general, * LR parsers are a form of bottom up shift-reduce parsers. Shift-reduce * parsers act by shifting input onto a parse stack until the Symbols * matching the right hand side of a ...
45,377
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
Scanner.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/runtime/Scanner.java
package java_cup.runtime; /** * Defines the Scanner interface, which CUP uses in the default * implementation of <code>lr_parser.scan()</code>. Integration * of scanners implementing <code>Scanner</code> is facilitated. * * @version last updated 23-Jul-1999 * @author David MacMahon <davidm@smartsc.com> */ /* ...
887
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
Symbol.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/runtime/Symbol.java
package java_cup.runtime; /** * Defines the Symbol class, which is used to represent all terminals * and nonterminals while parsing. The lexer should pass CUP Symbols * and CUP returns a Symbol. * * @version last updated: 7/3/96 * @author Frank Flannery */ /* ************************************************...
2,766
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
virtual_parse_stack.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.xml/src/java_cup/runtime/virtual_parse_stack.java
package java_cup.runtime; import java.util.Stack; /** This class implements a temporary or "virtual" parse stack that * replaces the top portion of the actual parse stack (the part that * has been changed by some set of operations) while maintaining its * original contents. This data structure is used when ...
5,136
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
GridColumn.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/GridColumn.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
39,444
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
GridHeaderEditor.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/GridHeaderEditor.java
/******************************************************************************* * Copyright (c) 2009 BestSolution.at * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
6,628
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
GridColumnGroup.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/GridColumnGroup.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
14,153
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
GridCellRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/GridCellRenderer.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
5,587
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
GridVisibleRangeSupport.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/GridVisibleRangeSupport.java
package org.eclipse.nebula.widgets.grid; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.EventObject; import java.util.Iterator; import org.eclipse.nebula.widgets.grid.Grid.GridVisibleRange; import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.Event; import org...
4,667
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
GridDragSourceEffect.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/GridDragSourceEffect.java
package org.eclipse.nebula.widgets.grid; import java.util.ArrayList; import java.util.List; import org.eclipse.swt.dnd.DragSourceAdapter; import org.eclipse.swt.dnd.DragSourceEffect; import org.eclipse.swt.dnd.DragSourceEvent; import org.eclipse.swt.graphics.GC; import org.eclipse.swt.graphics.Image; import org.eclip...
4,771
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
GridFooterRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/GridFooterRenderer.java
/******************************************************************************* * Copyright (c) 2009 BestSolution.at * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at ...
1,774
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
AbstractInternalWidget.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/AbstractInternalWidget.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
1,352
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
IInternalWidget.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/IInternalWidget.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
2,001
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
IRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/IRenderer.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
3,914
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
GridCellSpanManager.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/GridCellSpanManager.java
/******************************************************************************* * Copyright (c) 2009 Claes Rosell * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * ...
2,227
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
Grid.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/Grid.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
338,421
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
GridItem.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/GridItem.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
60,507
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
AbstractRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/AbstractRenderer.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
4,899
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
GridEditor.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/GridEditor.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
12,652
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
GridHeaderRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/GridHeaderRenderer.java
/******************************************************************************* * Copyright (c) 2008 BestSolution.at and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
2,911
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
GridDropTargetEffect.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/GridDropTargetEffect.java
package org.eclipse.nebula.widgets.grid; import org.eclipse.swt.SWT; import org.eclipse.swt.dnd.DND; import org.eclipse.swt.dnd.DropTargetAdapter; import org.eclipse.swt.dnd.DropTargetEffect; import org.eclipse.swt.dnd.DropTargetEvent; import org.eclipse.swt.graphics.Point; import org.eclipse.swt.widgets.Widget; /** ...
9,979
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
DefaultInsertMarkRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/DefaultInsertMarkRenderer.java
package org.eclipse.nebula.widgets.grid.internal; import org.eclipse.nebula.widgets.grid.AbstractRenderer; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.GC; import org.eclipse.swt.graphics.Point; import org.eclipse.swt.graphics.Rectangle; /** * A renderer which paints the insert mark feedback during dr...
1,260
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
DefaultBottomLeftRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/DefaultBottomLeftRenderer.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
1,555
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
DefaultEmptyColumnFooterRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/DefaultEmptyColumnFooterRenderer.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
1,526
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
DefaultColumnHeaderRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/DefaultColumnHeaderRenderer.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
13,490
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
DefaultRowHeaderRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/DefaultRowHeaderRenderer.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
9,606
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
DefaultFocusRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/DefaultFocusRenderer.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
1,758
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
IScrollBarProxy.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/IScrollBarProxy.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
2,940
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
DefaultDropPointRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/DefaultDropPointRenderer.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
2,422
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
DefaultTopLeftRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/DefaultTopLeftRenderer.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
2,029
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
TextUtils.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/TextUtils.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
3,903
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
SortArrowRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/SortArrowRenderer.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
2,372
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
GroupToggleRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/GroupToggleRenderer.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
5,043
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
GridToolTip.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/GridToolTip.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
3,332
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
DefaultColumnFooterRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/DefaultColumnFooterRenderer.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
5,044
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
DefaultColumnGroupHeaderRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/DefaultColumnGroupHeaderRenderer.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
8,912
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
DefaultEmptyColumnHeaderRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/DefaultEmptyColumnHeaderRenderer.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
1,410
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
ToggleRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/ToggleRenderer.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
1,972
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
DefaultEmptyCellRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/DefaultEmptyCellRenderer.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
3,099
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
CheckBoxRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/CheckBoxRenderer.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
3,289
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
ScrollBarProxyAdapter.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/ScrollBarProxyAdapter.java
package org.eclipse.nebula.widgets.grid.internal; import org.eclipse.swt.events.SelectionListener; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.ScrollBar; /** * Adapts a normal scrollbar to the IScrollBar proxy. * * @author chris.gross@us.ibm.com * @since 2.0.0 */ public class ScrollBarPr...
3,194
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
DefaultEmptyRowHeaderRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/DefaultEmptyRowHeaderRenderer.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
4,173
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
DefaultCellRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/DefaultCellRenderer.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
20,842
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
NullScrollBarProxy.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/NullScrollBarProxy.java
package org.eclipse.nebula.widgets.grid.internal; import org.eclipse.swt.events.SelectionListener; import org.eclipse.swt.widgets.Event; /** * A null-op scrollbar proxy. Used when the grid is not showing scrollbars. * * @author chris.gross@us.ibm.com * @since 2.0.0 */ public class NullScrollBarProxy implements ...
2,190
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
ExpandToggleRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/ExpandToggleRenderer.java
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
4,793
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
BranchRenderer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/widgets/grid/internal/BranchRenderer.java
/******************************************************************************* * Copyright (c) 2008 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
7,086
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
CheckEditingSupport.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/jface/gridviewer/CheckEditingSupport.java
/******************************************************************************* * Copyright (c) 2007 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
1,431
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
GridViewerColumn.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/jface/gridviewer/GridViewerColumn.java
/******************************************************************************* * Copyright (c) 2007 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
7,714
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
GridViewerEditor.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/jface/gridviewer/GridViewerEditor.java
/******************************************************************************* * Copyright (c) 2007 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
4,948
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
GridColumnLabelProvider.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/jface/gridviewer/GridColumnLabelProvider.java
/******************************************************************************* * Copyright (c) 2007 Tom Schindl and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is avail...
2,430
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
GridTreeViewer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/jface/gridviewer/GridTreeViewer.java
/******************************************************************************* * Copyright (c) 2007 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
11,977
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
GridViewerRow.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/jface/gridviewer/GridViewerRow.java
/******************************************************************************* * Copyright (c) 2007 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
7,442
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
GridTableViewer.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/jface/gridviewer/GridTableViewer.java
/******************************************************************************* * Copyright (c) 2007 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
13,554
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
CellSelection.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/jface/gridviewer/internal/CellSelection.java
package org.eclipse.nebula.jface.gridviewer.internal; import java.util.ArrayList; import java.util.List; import org.eclipse.jface.viewers.IElementComparer; import org.eclipse.jface.viewers.StructuredSelection; /** * FIXME */ public class CellSelection extends SelectionWithFocusRow { private List indicesList; pri...
1,200
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
SelectionWithFocusRow.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/org.eclipse.nebula.widgets.grid/src/org/eclipse/nebula/jface/gridviewer/internal/SelectionWithFocusRow.java
package org.eclipse.nebula.jface.gridviewer.internal; import java.util.List; import org.eclipse.jface.viewers.IElementComparer; import org.eclipse.jface.viewers.StructuredSelection; /** * FIXME */ public class SelectionWithFocusRow extends StructuredSelection { private Object focusElement; /** * FIXME * @pa...
672
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
Activator.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/cat/ts/help/Activator.java
package net.heartsome.cat.ts.help; import org.eclipse.jface.resource.ImageDescriptor; import org.eclipse.ui.plugin.AbstractUIPlugin; import org.osgi.framework.BundleContext; /** * The activator class controls the plug-in life cycle */ public class Activator extends AbstractUIPlugin { /** * The plug-in ID */ ...
1,163
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
SystemResourceUtil.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/cat/ts/help/SystemResourceUtil.java
package net.heartsome.cat.ts.help; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.jface.dialogs.IDialogConstants; import org.eclipse.swt.widgets.Display; import net.heartsome.license.LicenseAgreementDialog; import net.heartsome.license.LicenseManageDialog; import net.heartsome.license.LocalAutho...
18,312
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
Series.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/Series.java
package net.heartsome.license; public class Series { public native String getSeries(); }
91
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
OffLineActiveService.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/OffLineActiveService.java
package net.heartsome.license; import net.heartsome.license.constants.Constants; import net.heartsome.license.encrypt.InstallKeyEncrypt; import net.heartsome.license.generator.IKeyGenerator; import net.heartsome.license.generator.KeyGeneratorImpl; import net.heartsome.license.utils.FileUtils; import net.heartsome.lice...
3,866
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
WindowsSeries.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/WindowsSeries.java
package net.heartsome.license; public class WindowsSeries implements SeriesInterface { public String getSeries() { try { System.loadLibrary("win_x86_Series_" + System.getProperty("sun.arch.data.model") + "bit"); } catch (UnsatisfiedLinkError e) { return null; } catch (SecurityExceptio...
404
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
ActiveMethodDialog.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/ActiveMethodDialog.java
package net.heartsome.license; import net.heartsome.license.constants.Constants; import net.heartsome.license.resource.Messages; import org.eclipse.jface.dialogs.Dialog; import org.eclipse.jface.dialogs.IDialogConstants; import org.eclipse.jface.layout.GridDataFactory; import org.eclipse.swt.SWT; import org.eclipse.s...
5,176
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
ProtectionFactory.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/ProtectionFactory.java
package net.heartsome.license; import java.io.File; import net.heartsome.license.encrypt.Encrypt; import net.heartsome.license.encrypt.EncryptRSA; import org.eclipse.jface.util.Util; public class ProtectionFactory { public static String getSeries() { SeriesInterface s; if (Util.isWindows()) { s = new Wind...
2,601
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
LinuxSeries.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/LinuxSeries.java
package net.heartsome.license; //import java.io.File; //import java.io.IOException; import java.net.NetworkInterface; import java.net.SocketException; import java.util.Enumeration; //import net.heartsome.license.utils.StringUtils; // //import org.eclipse.core.runtime.FileLocator; //import org.eclipse.core.runtime.Pla...
1,991
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
OfflineActiveDialog.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/OfflineActiveDialog.java
package net.heartsome.license; import java.text.MessageFormat; import java.util.ArrayList; import java.util.HashMap; import net.heartsome.license.constants.Constants; import net.heartsome.license.encrypt.OffLineEncrypt; import net.heartsome.license.generator.IKeyGenerator; import net.heartsome.license.generator.KeyGe...
17,385
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
LicenseIdValidator.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/LicenseIdValidator.java
package net.heartsome.license; import net.heartsome.license.constants.Constants; import net.heartsome.license.generator.LicenseIdGenerator; public class LicenseIdValidator { private boolean isTrial; private LicenseIdGenerator gen; public LicenseIdValidator(String licenseId) { gen = new LicenseIdGenerator(lic...
1,111
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
LocalAuthorizationValidator.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/LocalAuthorizationValidator.java
package net.heartsome.license; import net.heartsome.license.constants.Constants; import net.heartsome.license.encrypt.InstallKeyEncrypt; import net.heartsome.license.utils.FileUtils; import net.heartsome.license.utils.StringUtils; public class LocalAuthorizationValidator { private boolean isTrial = false; private...
3,942
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
SelectGrantFileDialog.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/SelectGrantFileDialog.java
package net.heartsome.license; import java.io.File; import java.text.MessageFormat; import net.heartsome.license.constants.Constants; import net.heartsome.license.resource.Messages; import net.heartsome.license.utils.StringUtils; import org.eclipse.jface.dialogs.Dialog; import org.eclipse.jface.dialogs.IDialogConsta...
7,385
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
CustomMessageDialog.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/CustomMessageDialog.java
package net.heartsome.license; import java.text.MessageFormat; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import net.heartsome.license.resource.Messages; import org.eclipse.jface.dialogs.IDialogConstants; import org.eclipse.jface.dialogs.IconAndMessageDialog; import org.eclipse.jfac...
5,695
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
MacosxSeries.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/MacosxSeries.java
package net.heartsome.license; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; public class MacosxSeries implements SeriesInterface { public String getSeries() { try { String[] commands = new String[] {"/bin/bash", "-c", "ioreg -rd1 -c IOPlatformExpertDevice | " + "awk '/...
1,854
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
LicenseReader.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/LicenseReader.java
package net.heartsome.license; public class LicenseReader { private byte[] key = new byte[] {48,-126,4,-67,2,1,0,48,13,6,9,42,-122,72,-122,-9,13,1,1,1,5,0,4,-126,4,-89,48,-126,4,-93,2,1,0,2, -126,1,1,0,-116,-31,33,-26,26,115,95,-111,-97,62,29,91,-68,-26,19,56,-16,16,115,-127,-120,-58,-20,-52,-2,56,23,-2,-68, 43...
4,748
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
LicenseAgreementDialog.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/LicenseAgreementDialog.java
package net.heartsome.license; import net.heartsome.license.resource.Messages; import org.eclipse.jface.dialogs.Dialog; import org.eclipse.jface.dialogs.IDialogConstants; import org.eclipse.swt.SWT; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.gr...
3,179
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
GetActiveKeyDialog.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/GetActiveKeyDialog.java
package net.heartsome.license; import net.heartsome.cat.ts.help.Activator; import net.heartsome.license.resource.Messages; import org.eclipse.jface.dialogs.Dialog; import org.eclipse.jface.dialogs.IDialogConstants; import org.eclipse.jface.layout.GridDataFactory; import org.eclipse.swt.SWT; import org.eclipse.swt.cus...
6,772
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
LicenseManageDialog.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/LicenseManageDialog.java
package net.heartsome.license; import java.text.MessageFormat; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import net.heartsome.cat.common.ui.Activator; import net.heartsome.cat.common.ui.dialog.HsPreferenceDialog; import net.heartsome.license.constants.Constants; import net.heartsome...
30,948
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
RandomUtils.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/utils/RandomUtils.java
package net.heartsome.license.utils; public class RandomUtils { public static String generateRandom(int num) { char[] temp = new char[] {'0','1','2','3','4','5','6','7','8','9', 'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o', 'p','q','r','s','t','u','v','w','x','y','z','A','B','C','D', 'E...
612
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
DateUtils.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/utils/DateUtils.java
package net.heartsome.license.utils; import java.text.SimpleDateFormat; import java.util.Date; public class DateUtils { public static String getDate() { Date date = new Date(); SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd"); return format.format(date); } }
283
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
FileUtils.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/utils/FileUtils.java
package net.heartsome.license.utils; import java.io.BufferedInputStream; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import net.heartsome.license.ProtectionFactory; import net.heartsome.license.constants.Constan...
2,403
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
StringUtils.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/utils/StringUtils.java
package net.heartsome.license.utils; import net.heartsome.license.constants.Constants; public class StringUtils { public static String handle(String key, int interval, int start, int num) { char[] temp = new char[] {'0','1','2','3','4','5','6','7','8','9', 'g','h','i','j','k','l','m','n','o','T','U','V','W','X...
3,672
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
LicenseManageHandler.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/handler/LicenseManageHandler.java
package net.heartsome.license.handler; import java.lang.reflect.InvocationTargetException; import net.heartsome.cat.ts.help.SystemResourceUtil; import net.heartsome.license.resource.Messages; import org.eclipse.core.commands.AbstractHandler; import org.eclipse.core.commands.ExecutionEvent; import org.eclipse.core.co...
1,486
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
KeyGeneratorImpl.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/generator/KeyGeneratorImpl.java
package net.heartsome.license.generator; import net.heartsome.license.ProtectionFactory; import net.heartsome.license.constants.Constants; import net.heartsome.license.utils.RandomUtils; public class KeyGeneratorImpl implements IKeyGenerator { private String installKey; public byte[] generateKey(String licenseId...
947
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
IKeyGenerator.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/generator/IKeyGenerator.java
package net.heartsome.license.generator; public interface IKeyGenerator { byte[] generateKey(String licenseId, String series, byte[] b); byte[] generateKey(String licenseId, String series, String installKey, byte[] b); String getInstallKey(); String generateInstallKey(); }
285
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z
LicenseIdGenerator.java
/FileExtraction/Java_unseen/heartsome_translationstudio8/base_plugins/net.heartsome.cat.ts.help/src/net/heartsome/license/generator/LicenseIdGenerator.java
package net.heartsome.license.generator; import net.heartsome.license.utils.RandomUtils; public class LicenseIdGenerator { private String licenseId; public LicenseIdGenerator(String licenseId) { this.licenseId = licenseId; } public LicenseIdGenerator(String productId, String version, String isTrial) { this....
833
Java
.java
heartsome/translationstudio8
83
45
18
2014-06-03T17:56:15Z
2020-10-13T06:46:15Z