index
int64
1
10.7k
class
stringclasses
782 values
comment_sentence
stringlengths
1
1.78k
partition
int64
0
0
combo
stringlengths
17
1.81k
labels
listlengths
7
7
6,535
AutoconfEditor.java
// compute the hover information
0
// compute the hover information | AutoconfEditor.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,536
AutoconfEditor.java
// allow any number of lines being displayed, as we support scrolling
0
// allow any number of lines being displayed, as we support scrolling | AutoconfEditor.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,537
AutoconfEditor.java
// hover region: the beginning of the concerned line to place the control right over the line
0
// hover region: the beginning of the concerned line to place the control right over the line | AutoconfEditor.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,538
AutoconfEditor.java
// AnnotationBarHoverManager sets (5,0), minus SourceViewer.GAP_SIZE_1
0
// AnnotationBarHoverManager sets (5,0), minus SourceViewer.GAP_SIZE_1 | AutoconfEditor.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,539
AutoconfEditor.java
// modified version from TextViewer
0
// modified version from TextViewer | AutoconfEditor.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,541
AutoconfEditor.java
Removes the given listener. * Has no effect if an identical listener was not already registered.
0
Removes the given listener. * Has no effect if an identical listener was not already registered. | AutoconfEditor.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,544
AutoconfEditor.java
// Sticky hover support
0
// Sticky hover support | AutoconfEditor.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,545
AutoconfEditor.java
// Content assist
0
// Content assist | AutoconfEditor.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,548
AutoconfEditor.java
// ensure decoration support has been created and configured.
0
// ensure decoration support has been created and configured. | AutoconfEditor.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,550
DebugTextHoverAdapterFactory.java
@link IDMVMContext
0
@link IDMVMContext | DebugTextHoverAdapterFactory.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,551
DebugTextHoverAdapterFactory.java
@link ICEditorTextHover
0
@link ICEditorTextHover | DebugTextHoverAdapterFactory.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,552
DebugTextHoverAdapterFactory.java
Adapter factory adapting an {@link IDMVMContext} to an {@link ICEditorTextHover}.
0
Adapter factory adapting an {@link IDMVMContext} to an {@link ICEditorTextHover}. | DebugTextHoverAdapterFactory.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,553
DebugTextHoverAdapterFactory.java
// try session specific hover
0
// try session specific hover | DebugTextHoverAdapterFactory.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,554
DebugTextHoverAdapterFactory.java
// use default
0
// use default | DebugTextHoverAdapterFactory.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,556
SCMMetricsInfo.java
This class is used to summarize useful shared cache manager metrics for the * webUI display.
0
This class is used to summarize useful shared cache manager metrics for the * webUI display. | SCMMetricsInfo.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,557
StdoutLogService.java
Contributors: * IBM - Initial API and implementation
0
Contributors: * IBM - Initial API and implementation | StdoutLogService.java
[ 0, 1, 0, 0, 0, 0, 0 ]
6,558
StdoutLogService.java
@author crecoskie
0
@author crecoskie | StdoutLogService.java
[ 0, 1, 0, 0, 0, 0, 0 ]
6,559
StdoutLogService.java
@see org.eclipse.cdt.core.parser.AbstractParserLogService#errorLog(java.lang.String)
0
@see org.eclipse.cdt.core.parser.AbstractParserLogService#errorLog(java.lang.String) | StdoutLogService.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,561
StdoutLogService.java
@see org.eclipse.cdt.core.parser.AbstractParserLogService#isTracingExceptions()
0
@see org.eclipse.cdt.core.parser.AbstractParserLogService#isTracingExceptions() | StdoutLogService.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,562
StdoutLogService.java
@see org.eclipse.cdt.core.parser.AbstractParserLogService#traceLog(java.lang.String)
0
@see org.eclipse.cdt.core.parser.AbstractParserLogService#traceLog(java.lang.String) | StdoutLogService.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,563
PDOMExternalReferencesList.java
@link #getIterator()
0
@link #getIterator() | PDOMExternalReferencesList.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,564
PDOMExternalReferencesList.java
A utility class for storing a list of external references. An external reference is * a PDOMName that references a PDOMBinding in a different linkage. This list can be * examined using {@link #getIterator()}.
0
A utility class for storing a list of external references. An external reference is * a PDOMName that references a PDOMBinding in a different linkage. This list can be * examined using {@link #getIterator()}. | PDOMExternalReferencesList.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,566
PDOMExternalReferencesList.java
This example shows this storage structure for three names in two linkages. * * NameA2 * ^ * | * NameA1 NameB * ^ ^ * | | * record --> LinkageA --> LinkageB * * NameA1 and NameA2 should both be created in LinkageA, NameB should be created in LinkageB. * * The interface to this class flattens this storage structure so it appears as a simple * list that can be iterated over. * * Continuing with the same example, the iterator behaves as though the list were: * * { NameA1, NameA2, NameB } * * This class mostly doesn't care about the inner lists. They are implemented using the * #getNextInBinding attribute of PDOMName. * * This class implements the outer list as a singly linked list of "nodes". Each node stores * the linkageId, the record of the first PDOMName in the list, and the record of the next node.
0
This example shows this storage structure for three names in two linkages. * * NameA2 * ^ * | * NameA1 NameB * ^ ^ * | | * record --> LinkageA --> LinkageB * * NameA1 and NameA2 should both be created in LinkageA, NameB should be created in LinkageB. * * The interface to this class flattens this storage structure so it appears as a simple * list that can be iterated over. * * Continuing with the same example, the iterator behaves as though the list were: * * { NameA1, NameA2, NameB } * * This class mostly doesn't care about the inner lists. They are implemented using the * #getNextInBinding attribute of PDOMName. * * This class implements the outer list as a singly linked list of "nodes". Each node stores * the linkageId, the record of the first PDOMName in the list, and the record of the next node. | PDOMExternalReferencesList.java
[ 0, 0, 1, 0, 0, 0, 0 ]
6,567
PDOMExternalReferencesList.java
* Create a new instance at the given location in the given PDOM.
0
* Create a new instance at the given location in the given PDOM. | PDOMExternalReferencesList.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,569
PDOMExternalReferencesList.java
* Add the given name to this list.
0
* Add the given name to this list. | PDOMExternalReferencesList.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,571
PDOMExternalReferencesList.java
Search through the nodes to find the one for the new name's linkage. Keep track of // the record that held the last examined node so that a new node can be appended if // needed.
0
Search through the nodes to find the one for the new name's linkage. Keep track of // the record that held the last examined node so that a new node can be appended if // needed. | PDOMExternalReferencesList.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,572
PDOMExternalReferencesList.java
// Each node looks like { int linkageID; recPtr nextNode; recPtr headOfList; }
0
// Each node looks like { int linkageID; recPtr nextNode; recPtr headOfList; } | PDOMExternalReferencesList.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,574
PDOMExternalReferencesList.java
// Setup the new node for this linkage and initialize the list ptr with an empty list.
0
// Setup the new node for this linkage and initialize the list ptr with an empty list. | PDOMExternalReferencesList.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,575
PDOMExternalReferencesList.java
// If there isn't already a node for this linkage, then create a new one.
0
// If there isn't already a node for this linkage, then create a new one. | PDOMExternalReferencesList.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,576
PDOMExternalReferencesList.java
// If the list is not empty then modify the first element to be right after the name that // is being inserted.
0
// If the list is not empty then modify the first element to be right after the name that // is being inserted. | PDOMExternalReferencesList.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,577
PDOMExternalReferencesList.java
// Finally, make the new name the first element in the list.
0
// Finally, make the new name the first element in the list. | PDOMExternalReferencesList.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,581
PDOMExternalReferencesList.java
// Otherwise update the node's head field to point to the given name.
0
// Otherwise update the node's head field to point to the given name. | PDOMExternalReferencesList.java
[ 0, 0, 0, 0, 0, 0, 1 ]
6,582
PDOMExternalReferencesList.java
// Initialize next by advancing to the first name.
0
// Initialize next by advancing to the first name. | PDOMExternalReferencesList.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,583
PDOMExternalReferencesList.java
Advance to the next linkage node that has a non-empty list of names. Return the * PDOMName at the head of the list. This is the next name that should be returned * from #next(). Return null if there are no more linkage nodes.
0
Advance to the next linkage node that has a non-empty list of names. Return the * PDOMName at the head of the list. This is the next name that should be returned * from #next(). Return null if there are no more linkage nodes. | PDOMExternalReferencesList.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,585
PDOMExternalReferencesList.java
// Generate a log message about the linkageID that is no longer valid, but continue // to the next node.
0
// Generate a log message about the linkageID that is no longer valid, but continue // to the next node. | PDOMExternalReferencesList.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,586
PDOMExternalReferencesList.java
// Load node's linkage and use it to return the first name in this node's list.
0
// Load node's linkage and use it to return the first name in this node's list. | PDOMExternalReferencesList.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,587
PDOMExternalReferencesList.java
// If a node is found that has a name in the list, then update this iterator to // point to the next linkage's node (this is so the next call to advance starts // at the right place).
0
// If a node is found that has a name in the list, then update this iterator to // point to the next linkage's node (this is so the next call to advance starts // at the right place). | PDOMExternalReferencesList.java
[ 0, 0, 0, 0, 0, 0, 1 ]
6,590
BarInUIDL.java
@see com.vaadin.tests.components.AbstractTestUI#setup(com.vaadin.server. * VaadinRequest)
0
@see com.vaadin.tests.components.AbstractTestUI#setup(com.vaadin.server. * VaadinRequest) | BarInUIDL.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,591
BarInUIDL.java
* @see com.vaadin.tests.components.AbstractTestUI#getTestDescription()
0
* @see com.vaadin.tests.components.AbstractTestUI#getTestDescription() | BarInUIDL.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,592
BarInUIDL.java
* @see com.vaadin.tests.components.AbstractTestUI#getTicketNumber()
0
* @see com.vaadin.tests.components.AbstractTestUI#getTicketNumber() | BarInUIDL.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,593
JavaSqlNetworkWordCount.java
Use DataFrames and SQL to count words in UTF8 encoded, '\n' delimited text received from the * network every second.
0
Use DataFrames and SQL to count words in UTF8 encoded, '\n' delimited text received from the * network every second. | JavaSqlNetworkWordCount.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,596
JavaSqlNetworkWordCount.java
// Create a JavaReceiverInputDStream on target ip:port and count the // words in input stream of \n delimited text (eg. generated by 'nc') // Note that no duplication in storage level only for running locally. // Replication necessary in distributed scenario for fault tolerance.
0
// Create a JavaReceiverInputDStream on target ip:port and count the // words in input stream of \n delimited text (eg. generated by 'nc') // Note that no duplication in storage level only for running locally. // Replication necessary in distributed scenario for fault tolerance. | JavaSqlNetworkWordCount.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,597
JavaSqlNetworkWordCount.java
// Convert RDDs of the words DStream to DataFrame and run SQL query
0
// Convert RDDs of the words DStream to DataFrame and run SQL query | JavaSqlNetworkWordCount.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,598
JavaSqlNetworkWordCount.java
// Do word count on table using SQL and print it
0
// Do word count on table using SQL and print it | JavaSqlNetworkWordCount.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,599
JavaSqlNetworkWordCount.java
// Register as table
0
// Register as table | JavaSqlNetworkWordCount.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,600
JavaSqlNetworkWordCount.java
// Convert JavaRDD[String] to JavaRDD[bean class] to DataFrame
0
// Convert JavaRDD[String] to JavaRDD[bean class] to DataFrame | JavaSqlNetworkWordCount.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,601
JavaSqlNetworkWordCount.java
/** Lazily instantiated singleton instance of SQLContext */
0
/** Lazily instantiated singleton instance of SQLContext */ | JavaSqlNetworkWordCount.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,603
IFileWrappedMapOutput.java
* @param <V> value type for map output
0
* @param <V> value type for map output | IFileWrappedMapOutput.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,604
IFileWrappedMapOutput.java
* @return the merger
0
* @return the merger | IFileWrappedMapOutput.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,605
IFileWrappedMapOutput.java
* Common code for allowing MapOutput classes to handle streams.
0
* Common code for allowing MapOutput classes to handle streams. | IFileWrappedMapOutput.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,606
FieldSelectionReducer.java
This class implements a reducer class that can be used to perform field * selections in a manner similar to unix cut.
0
This class implements a reducer class that can be used to perform field * selections in a manner similar to unix cut. | FieldSelectionReducer.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,607
FieldSelectionReducer.java
The input data is treated as fields separated by a user specified * separator (the default value is "\t"). The user can specify a list of * fields that form the reduce output keys, and a list of fields that form * the reduce output values. The fields are the union of those from the key * and those from the value. * * The field separator is under attribute "mapreduce.fieldsel.data.field.separator" * * The reduce output field list spec is under attribute * "mapreduce.fieldsel.reduce.output.key.value.fields.spec". * The value is expected to be like * "keyFieldsSpec:valueFieldsSpec" key/valueFieldsSpec are comma (,) * separated field spec: fieldSpec,fieldSpec,fieldSpec ... Each field spec * can be a simple number (e.g. 5) specifying a specific field, or a range * (like 2-5) to specify a range of fields, or an open range (like 3-) * specifying all the fields starting from field 3. The open range field * spec applies value fields only. They have no effect on the key fields. * * Here is an example: "4,3,0,1:6,5,1-3,7-". It specifies to use fields * 4,3,0 and 1 for keys, and use fields 6,5,1,2,3,7 and above for values.
0
The input data is treated as fields separated by a user specified * separator (the default value is "\t"). The user can specify a list of * fields that form the reduce output keys, and a list of fields that form * the reduce output values. The fields are the union of those from the key * and those from the value. * * The field separator is under attribute "mapreduce.fieldsel.data.field.separator" * * The reduce output field list spec is under attribute * "mapreduce.fieldsel.reduce.output.key.value.fields.spec". * The value is expected to be like * "keyFieldsSpec:valueFieldsSpec" key/valueFieldsSpec are comma (,) * separated field spec: fieldSpec,fieldSpec,fieldSpec ... Each field spec * can be a simple number (e.g. 5) specifying a specific field, or a range * (like 2-5) to specify a range of fields, or an open range (like 3-) * specifying all the fields starting from field 3. The open range field * spec applies value fields only. They have no effect on the key fields. * * Here is an example: "4,3,0,1:6,5,1-3,7-". It specifies to use fields * 4,3,0 and 1 for keys, and use fields 6,5,1,2,3,7 and above for values. | FieldSelectionReducer.java
[ 0, 0, 1, 0, 0, 0, 0 ]
6,608
TestAuditLogger.java
@link AuditLogger
0
@link AuditLogger | TestAuditLogger.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,609
TestAuditLogger.java
@link AuditLogger
0
@link AuditLogger | TestAuditLogger.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,610
TestAuditLogger.java
@link TestImpl#ping()
0
@link TestImpl#ping() | TestAuditLogger.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,611
TestAuditLogger.java
@link TestImpl
0
@link TestImpl | TestAuditLogger.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,612
TestAuditLogger.java
@link AuditLogger
0
@link AuditLogger | TestAuditLogger.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,613
TestAuditLogger.java
* Tests {@link AuditLogger}.
0
* Tests {@link AuditLogger}. | TestAuditLogger.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,615
TestAuditLogger.java
// add the first k=v pair and check
0
// add the first k=v pair and check | TestAuditLogger.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,616
TestAuditLogger.java
// append another k1=v1 pair to already added k=v and test
0
// append another k1=v1 pair to already added k=v and test | TestAuditLogger.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,618
TestAuditLogger.java
// append another k1=null pair and test
0
// append another k1=null pair and test | TestAuditLogger.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,619
TestAuditLogger.java
// now add the target and check of the final string
0
// now add the target and check of the final string | TestAuditLogger.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,622
TestAuditLogger.java
* Test the AuditLog format for failure events.
0
* Test the AuditLog format for failure events. | TestAuditLogger.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,623
TestAuditLogger.java
* Test the AuditLog format for failure events.
0
* Test the AuditLog format for failure events. | TestAuditLogger.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,624
TestAuditLogger.java
* Test {@link AuditLogger} without IP set.
0
* Test {@link AuditLogger} without IP set. | TestAuditLogger.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,626
TestAuditLogger.java
A special extension of {@link TestImpl} RPC server with * {@link TestImpl#ping()} testing the audit logs.
0
A special extension of {@link TestImpl} RPC server with * {@link TestImpl#ping()} testing the audit logs. | TestAuditLogger.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,627
TestAuditLogger.java
// test with ip set
0
// test with ip set | TestAuditLogger.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,628
TestAuditLogger.java
* Test {@link AuditLogger} with IP set.
0
* Test {@link AuditLogger} with IP set. | TestAuditLogger.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,629
TestAuditLogger.java
// Make a client connection and test the audit log
0
// Make a client connection and test the audit log | TestAuditLogger.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,630
TestAuditLogger.java
// Start the testcase
0
// Start the testcase | TestAuditLogger.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,631
SuperclassTest.java
@author crazybob@google.com (Bob Lee)
0
@author crazybob@google.com (Bob Lee) | SuperclassTest.java
[ 0, 1, 0, 0, 0, 0, 0 ]
6,633
DescendingImmutableSortedMultiset.java
@code ImmutableSortedMultiset
0
@code ImmutableSortedMultiset | DescendingImmutableSortedMultiset.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,634
DescendingImmutableSortedMultiset.java
A descending wrapper around an {@code ImmutableSortedMultiset}
0
A descending wrapper around an {@code ImmutableSortedMultiset} | DescendingImmutableSortedMultiset.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,635
DescendingImmutableSortedMultiset.java
// uses writeReplace, not default serialization
0
// uses writeReplace, not default serialization | DescendingImmutableSortedMultiset.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,636
MakeTargetTransferDropTargetListener.java
Contributors: * Andrew Gvozdev (Quoin Inc.) - Initial implementation
0
Contributors: * Andrew Gvozdev (Quoin Inc.) - Initial implementation | MakeTargetTransferDropTargetListener.java
[ 0, 1, 0, 0, 0, 0, 0 ]
6,639
MakeTargetTransferDropTargetListener.java
@see AbstractContainerAreaDropAdapter
0
@see AbstractContainerAreaDropAdapter | MakeTargetTransferDropTargetListener.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,642
MakeTargetTransferDropTargetListener.java
@link DND#DROP_COPY
0
@link DND#DROP_COPY | MakeTargetTransferDropTargetListener.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,643
MakeTargetTransferDropTargetListener.java
@code dragOverOperation
0
@code dragOverOperation | MakeTargetTransferDropTargetListener.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,644
MakeTargetTransferDropTargetListener.java
@link DND#DROP_COPY
0
@link DND#DROP_COPY | MakeTargetTransferDropTargetListener.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,645
MakeTargetTransferDropTargetListener.java
@code dropObject
0
@code dropObject | MakeTargetTransferDropTargetListener.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,646
MakeTargetTransferDropTargetListener.java
@code dropContainer
0
@code dropContainer | MakeTargetTransferDropTargetListener.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,647
MakeTargetTransferDropTargetListener.java
@link MakeTargetTransfer
0
@link MakeTargetTransfer | MakeTargetTransferDropTargetListener.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,648
MakeTargetTransferDropTargetListener.java
* @param viewer - the viewer providing shell for UI.
0
* @param viewer - the viewer providing shell for UI. | MakeTargetTransferDropTargetListener.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,650
MakeTargetTransferDropTargetListener.java
* @param operation - incoming operation.
0
* @param operation - incoming operation. | MakeTargetTransferDropTargetListener.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,651
MakeTargetTransferDropTargetListener.java
* @return changed operation.
0
* @return changed operation. | MakeTargetTransferDropTargetListener.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,652
MakeTargetTransferDropTargetListener.java
* @param operation - incoming operation.
0
* @param operation - incoming operation. | MakeTargetTransferDropTargetListener.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,653
MakeTargetTransferDropTargetListener.java
* @return changed operation.
0
* @return changed operation. | MakeTargetTransferDropTargetListener.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,654
MakeTargetTransferDropTargetListener.java
* @param dropObject - object to drop.
0
* @param dropObject - object to drop. | MakeTargetTransferDropTargetListener.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,655
MakeTargetTransferDropTargetListener.java
* @param dropContainer - container where to drop the object.
0
* @param dropContainer - container where to drop the object. | MakeTargetTransferDropTargetListener.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,657
MakeTargetTransferDropTargetListener.java
* @param makeTargetTransferData - incoming data.
0
* @param makeTargetTransferData - incoming data. | MakeTargetTransferDropTargetListener.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,658
MakeTargetTransferDropTargetListener.java
* @param dropContainer - a container where the targets are being created.
0
* @param dropContainer - a container where the targets are being created. | MakeTargetTransferDropTargetListener.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,659
MakeTargetTransferDropTargetListener.java
* @param operation - drop/paste operation.
0
* @param operation - drop/paste operation. | MakeTargetTransferDropTargetListener.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,660
MakeTargetTransferDropTargetListener.java
* @param shell - a shell to display warnings to the user.
0
* @param shell - a shell to display warnings to the user. | MakeTargetTransferDropTargetListener.java
[ 0, 0, 0, 1, 0, 0, 0 ]
6,661
MakeTargetTransferDropTargetListener.java
* Creates make targets received by {@link MakeTargetTransfer} in Make Target View.
0
* Creates make targets received by {@link MakeTargetTransfer} in Make Target View. | MakeTargetTransferDropTargetListener.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,666
MakeTargetTransferDropTargetListener.java
* Constructor setting a viewer such as TreeViewer to pull selection from later on.
0
* Constructor setting a viewer such as TreeViewer to pull selection from later on. | MakeTargetTransferDropTargetListener.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,667
MakeTargetTransferDropTargetListener.java
{@code MakeTargetTransferDropTargetListener} handles drop of make targets * onto Make Target View. {@link MakeTargetTransfer} is used as the transfer agent and * provides for drag/drop and copy/paste between different eclipse sessions.
0
{@code MakeTargetTransferDropTargetListener} handles drop of make targets * onto Make Target View. {@link MakeTargetTransfer} is used as the transfer agent and * provides for drag/drop and copy/paste between different eclipse sessions. | MakeTargetTransferDropTargetListener.java
[ 1, 0, 0, 0, 0, 0, 0 ]
6,671
ManagedBuildCommandLineInfo.java
@see org.eclipse.cdt.managedbuilder.core.IManagedCommandLineInfo#getOutputFlag()
0
@see org.eclipse.cdt.managedbuilder.core.IManagedCommandLineInfo#getOutputFlag() | ManagedBuildCommandLineInfo.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,672
ManagedBuildCommandLineInfo.java
@see org.eclipse.cdt.managedbuilder.core.IManagedCommandLineInfo#getOutput()
0
@see org.eclipse.cdt.managedbuilder.core.IManagedCommandLineInfo#getOutput() | ManagedBuildCommandLineInfo.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,675
ManagedBuildCommandLineInfo.java
@see org.eclipse.cdt.managedbuilder.core.IManagedCommandLineInfo#getCommandName()
0
@see org.eclipse.cdt.managedbuilder.core.IManagedCommandLineInfo#getCommandName() | ManagedBuildCommandLineInfo.java
[ 0, 0, 0, 0, 1, 0, 0 ]
6,676
ManagedBuildCommandLineInfo.java
@see org.eclipse.cdt.managedbuilder.core.IManagedCommandLineInfo#getCommandLine()
0
@see org.eclipse.cdt.managedbuilder.core.IManagedCommandLineInfo#getCommandLine() | ManagedBuildCommandLineInfo.java
[ 0, 0, 0, 0, 1, 0, 0 ]