Showing 6,856 of 14,752 total issues
Method eUnset
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
@Override
public void eUnset(int featureID) {
switch (featureID) {
case MetadataPackage.CONTACT__TITLE:
setTitle(TITLE_EDEFAULT);
- Create a ticketCreate a ticket
Method eSet
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case MetadataPackage.REFERENCE__IS_REFERENCE_DESCRIPTION:
setIsReferenceDescription((Boolean)newValue);
- Create a ticketCreate a ticket
Method eSet
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case MetadataPackage.HAZARD__HAZARD_TYPE:
setHazardType((String)newValue);
- Create a ticketCreate a ticket
Method eUnset
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
@Override
public void eUnset(int featureID) {
switch (featureID) {
case MetadataPackage.HAZARD__HAZARD_TYPE:
setHazardType(HAZARD_TYPE_EDEFAULT);
- Create a ticketCreate a ticket
Method eSet
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case MetadataPackage.CONTACT__TITLE:
setTitle((String)newValue);
- Create a ticketCreate a ticket
Method eUnset
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
@Override
public void eUnset(int featureID) {
switch (featureID) {
case MetadataPackage.REFERENCE__IS_REFERENCE_DESCRIPTION:
setIsReferenceDescription(IS_REFERENCE_DESCRIPTION_EDEFAULT);
- Create a ticketCreate a ticket
Method execute
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
@Override
protected PortObject[] execute(PortObject[] inObjects, ExecutionContext exec)
throws Exception {
DataTable table = (DataTable) inObjects[0];
TableReader reader = new TableReader(table, set.getUsedConditions());
- Create a ticketCreate a ticket
Method loadEstModelGui
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
private void loadEstModelGui(final NodeSettingsRO settings) throws InvalidSettingsException {
try {
Config c = settings.getConfig("EstModelReaderUi");
estModelReaderUiSettings = c;
- Create a ticketCreate a ticket
Method getDblVal
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
private void getDblVal(MyDBTable myDBTable, int row, int col, HSSFRow row0, HSSFRow rowi) {
Object key = myDBTable.getValueAt(row, col);
if (key != null) {
try {
ResultSet rs = DBKernel.getResultSet("SELECT * FROM " + DBKernel.delimitL("DoubleKennzahlen") +
- Create a ticketCreate a ticket
Method getTableCellRendererComponent
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
@Override
public Component getTableCellRendererComponent(JTable table,
Object value, boolean isSelected, boolean hasFocus, int row,
int column) {
int statusColumn = -1;
- Create a ticketCreate a ticket
Method getTuplesToCombine
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
private static Map<KnimeTuple, List<KnimeTuple>> getTuplesToCombine(List<KnimeTuple> tuples, boolean containsData) {
KnimeSchema outSchema = null;
if (containsData) {
outSchema = SchemaFactory.createM1DataSchema();
- Create a ticketCreate a ticket
Method testConstructors
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
@Test
public void testConstructors() {
// Test constructor with name, time, timeUnit, concentration, concentrationUnit,
// concentrationStdDev, numberOfMeasurements
- Create a ticketCreate a ticket
Method execute
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public BufferedDataTable execute(final ExecutionContext exec) {
Map<NameAndDbId, Integer> columns = createColumnMap(pcmlDoc);
Map<String, ProcessNode> processNodes = createProcessNodeMap(pcmlDoc);
Double timeDiff = null;
- Create a ticketCreate a ticket
Function xmlToken
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function xmlToken(stream, state, cx) {
if (cx.depth == 2) { // Inside a JS /* */ comment
if (stream.match(/^.*?\*\//)) cx.depth = 1
else stream.skipToEnd()
return "comment"
- Create a ticketCreate a ticket
Function tokenBase
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function tokenBase(stream) {
if (stream.eatSpace()) return null;
var sol = stream.sol();
var ch = stream.next();
- Create a ticketCreate a ticket
Function measureCharInner
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function measureCharInner(cm, prepared, ch, bias) {
var place = nodeAndOffsetInLineMap(prepared.map, ch, bias);
var node = place.node, start = place.start, end = place.end, collapse = place.collapse;
var rect;
- Create a ticketCreate a ticket
Function Select2
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
var Select2 = function ($element, options) {
if (Utils.GetData($element[0], 'select2') != null) {
Utils.GetData($element[0], 'select2').destroy();
}
- Create a ticketCreate a ticket
Function path
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
d3.geo.path = function() {
var pointRadius = 4.5, projection, context, projectStream, contextStream, cacheStream;
function path(object) {
if (object) {
if (typeof pointRadius === "function") contextStream.pointRadius(+pointRadius.apply(this, arguments));
- Create a ticketCreate a ticket
Function start
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
force.start = function() {
var i, j, n = nodes.length, m = links.length, w = size[0], h = size[1], neighbors, o;
for (i = 0; i < n; ++i) {
(o = nodes[i]).index = i;
o.weight = 0;
- Create a ticketCreate a ticket
Function _tabKeydown
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
_tabKeydown: function( event ) {
var focusedTab = $( this.document[0].activeElement ).closest( "li" ),
selectedIndex = this.tabs.index( focusedTab ),
goingForward = true;
- Create a ticketCreate a ticket