Showing 4,841 of 7,782 total issues
Function interpolateString
has 63 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
d3.interpolateString = function(a, b) {
var m, // current match
i, // current index
j, // current index (for coallescing)
s0 = 0, // start index of current string prefix
Function start
has 63 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
force.start = function() {
var i,
j,
n = nodes.length,
m = links.length,
Function endOf
has 63 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function endOf(units) {
var time, startOfDate;
units = normalizeUnits(units);
if (units === undefined || units === 'millisecond' || !this.isValid()) {
return this;
Function _finishDrag
has 63 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
_finishDrag(evt: zk.Event, success: boolean): void {
this.dragging = false;
if (this.stackup) {
jq(this.stackup).remove();
delete this.stackup;
Text
has 23 methods (exceeds 20 allowed). Consider refactoring. Open
Open
public class Text extends AbstractComponent implements RawId {
private String _value = "";
private boolean _encode = true;
private Integer _tabindex;
MainLayout
has 23 methods (exceeds 20 allowed). Consider refactoring. Open
Open
public class MainLayout extends Borderlayout {
private static final Logger log = LoggerFactory.getLogger(MainLayout.class);
ListModelList fileModel = new ListModelList();
Map relatedFileModel = new LinkedHashMap();
B00757OnChange
has 23 methods (exceeds 20 allowed). Consider refactoring. Open
Open
public class B00757OnChange {
String value11;
String value12;
String value21;
String value22;
HtmlMacroComponent
has 23 methods (exceeds 20 allowed). Consider refactoring. Open
Open
public class HtmlMacroComponent extends HtmlBasedComponent implements Macro {
private transient Map<String, Object> _props;
private String _uri;
/** An array of components created by this inline macro.
* It is used only if {@link #isInline}
ExecutionCtrl
has 23 methods (exceeds 20 allowed). Consider refactoring. Open
Open
public interface ExecutionCtrl {
/** Returns the current page.
* Though an execution might process many pages, it processes update
* requests one-by-one and each update request is associated
* with a page.
ParamCall
has 23 methods (exceeds 20 allowed). Consider refactoring. Open
Open
public class ParamCall {
private static final Logger _log = LoggerFactory.getLogger(ParamCall.class);
private static final Paranamer _PARANAMER = new CachingParanamer(new AdaptiveParanamer());
Rating
has 23 methods (exceeds 20 allowed). Consider refactoring. Open
Open
public class Rating extends HtmlBasedComponent implements Disable, Readonly {
static {
addClientEvent(Rating.class, Events.ON_CHANGE, CE_IMPORTANT | CE_REPEAT_IGNORE);
}
MeshElement
has 23 methods (exceeds 20 allowed). Consider refactoring. Open
Open
public abstract class MeshElement extends XulElement implements Paginated {
private String _span;
private boolean _sizedByContent;
private boolean _autopaging;
private String _pagingPosition = "bottom";
Method service
has 62 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
/*package*/ void service(Event event, Scope scope, final List<EventListenerInfo> listeners,
final EventHandler evthd, final Method mtd, boolean skipPageListener) throws Exception {
final Execution exec = Executions.getCurrent();
final Desktop desktop = exec.getDesktop();
final Page page = _page != null ? _page : desktop.getFirstPage();
Method addTracking
has 62 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
protected void addTracking(List<String> series) {
final Binding binding = _ctx.getBinding();
final boolean dotracker = !_ctx.ignoreTracker();
if (binding != null && series != null && !series.isEmpty()) {
Method getCommandMethod
has 62 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
private Method getCommandMethod(Class<?> clz, String command, CommandMethodInfoProvider cmdInfo,
Map<Class<?>, Map<String, CachedItem<Method>>> cache, int commandParamCount, boolean isGlobal) {
Map<String, CachedItem<Method>> methods;
Method matchedMethodWithoutAnno = null;
CachedItem<Method> method = null;
Method tieValue
has 62 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public void tieValue(Object comp, Object base, Object script, Object propName, Object value, Object basePath) {
if (value instanceof IndirectBinding) {
value = ((IndirectBinding) value).getValue(null);
}
if (base == null) { //track from component
Method init
has 62 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
private void init() {
_items = new AbstractSequentialList<Listitem>() {
public ListIterator<Listitem> listIterator(int index) {
return new ItemIter(index);
}
Function _startDrag
has 62 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
_startDrag(evt: zk.Event): void {
zWatch.fire('onStartDrag', this, evt as unknown as zk.FireOptions);
//disable selection
zk(document.body).disableSelection(); // Bug #1820433
File BindELResolver.java
has 269 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
/* BindELResolver.java
Purpose:
Description:
Method parse
has 61 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
private void parse(PageDefinition pgdef, ProcessingInstruction pi) throws Exception {
final String target = pi.getTarget();
final Map<String, String> params = pi.parseData();
if ("page".equals(target)) {
parsePageDirective(pgdef, pi, params);