Showing 14,752 of 14,752 total issues
Method handleSuchfeldChange
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
void handleSuchfeldChange(final KeyEvent e, final boolean doFilter) {
if (!filterChangeAllowed) return;
if (isFormVisible()) {
return;
}
- Create a ticketCreate a ticket
Method myRefresh
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
private void myRefresh(final int row, final int col) {
JScrollPane scroller = getScroller();
int scrollVal = (scroller == null) ? -1 : scroller.getVerticalScrollBar().getValue();
int hscrollVal = (scroller == null) ? -1 : scroller.getHorizontalScrollBar().getValue();
// System.err.println(row+" - "+getSelectedID());
- Create a ticketCreate a ticket
Method setSettings
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public void setSettings(Config c, Integer defAgent, Integer defMatrix, Double defTemp, Double defPh, Double defAw, Double agentConc, Callable<Void> refresher) throws InvalidSettingsException {
this.defTemp = defTemp;
this.defPh = defPh;
this.defAw = defAw;
this.agentConc = agentConc;
- Create a ticketCreate a ticket
Method createUI
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
private void createUI() {
// Build simulations panel
setLayout(new BorderLayout());
setName("Simulations");
- Create a ticketCreate a ticket
Method loadSettingsFrom
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
@Override
protected void loadSettingsFrom(NodeSettingsRO settings, PortObject[] input)
throws NotConfigurableException {
final FSKEditorJSNodeSettings editorSettings = new FSKEditorJSNodeSettings();
- Create a ticketCreate a ticket
Method createUI
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
private void createUI() {
// Build simulations panel
setLayout(new BorderLayout());
setName("Simulations");
- Create a ticketCreate a ticket
Function tokenBase
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function tokenBase(stream, state) {
var ch = stream.next();
if (ch == "#" && state.startOfLine) {
stream.skipToEnd();
return "meta";
- Create a ticketCreate a ticket
Function updateLineGutter
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function updateLineGutter(cm, lineView, lineN, dims) {
if (lineView.gutter) {
lineView.node.removeChild(lineView.gutter);
lineView.gutter = null;
}
- Create a ticketCreate a ticket
Function onCopyCut
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function onCopyCut(e) {
if (signalDOMEvent(cm, e)) { return }
if (cm.somethingSelected()) {
setLastCopied({lineWise: false, text: cm.getSelections()});
if (e.type == "cut") { cm.replaceSelection("", null, "cut"); }
- Create a ticketCreate a ticket
Function objectKeys
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
var objectKeys = function () {
// From https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/keys
if (!Object.keys) {
Object.keys = (function() {
var hasOwnProperty = Object.prototype.hasOwnProperty,
- Create a ticketCreate a ticket
Function bind
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
MultipleSelection.prototype.bind = function (container, $container) {
var self = this;
MultipleSelection.__super__.bind.apply(this, arguments);
- Create a ticketCreate a ticket
Function _resolveWidth
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
Select2.prototype._resolveWidth = function ($element, method) {
var WIDTH = /^width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/i;
if (method == 'resolve') {
var styleWidth = this._resolveWidth($element, 'style');
- Create a ticketCreate a ticket
Function resetView
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
BootstrapTable.prototype.resetView = function (params) {
var padding = 0;
if (params && params.height) {
this.options.height = params.height;
- Create a ticketCreate a ticket
Function createInput
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
createInput: function(options) {
var TypeConstructor, typeOptions, input,
type = options.type;
//`date` is some kind of virtual type that is transformed to one of exact types
- Create a ticketCreate a ticket
Function partition
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
d3.layout.partition = function() {
var hierarchy = d3.layout.hierarchy(), size = [ 1, 1 ];
function position(node, x, dx, dy) {
var children = node.children;
node.x = x;
- Create a ticketCreate a ticket
Function _mouseCapture
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
_mouseCapture: function(event, overrideHandle) {
var currentItem = null,
validHandle = false,
that = this;
- Create a ticketCreate a ticket
Function cancel
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
cancel: function() {
if(this.dragging) {
this._mouseUp({ target: null });
- Create a ticketCreate a ticket
Function _mouseStart
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
_mouseStart: function(event) {
var o = this.options;
//Create and append the visible helper
- Create a ticketCreate a ticket
Function _hideDatepicker
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
_hideDatepicker: function(input) {
var showAnim, duration, postProcess, onClose,
inst = this._curInst;
if (!inst || (input && inst !== $.data(input, "datepicker"))) {
- Create a ticketCreate a ticket
Function _dialogDatepicker
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
_dialogDatepicker: function(input, date, onSelect, settings, pos) {
var id, browserWidth, browserHeight, scrollX, scrollY,
inst = this._dialogInst; // internal instance
if (!inst) {
- Create a ticketCreate a ticket