Showing 4,841 of 7,782 total issues
Method ListData
has 59 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
final public void ListData() throws ParseException {
/*@bgen(jjtree) ListData */
AstListData jjtn000 = new AstListData(JJTLISTDATA);
boolean jjtc000 = true;
jjtree.openNodeScope(jjtn000);
Method Assignment
has 59 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
final public void Assignment() throws ParseException {
if (jj_2_2(4)) {
LambdaExpression();
} else {
switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
Method beforeHostChildRemoved
has 59 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public void beforeHostChildRemoved(Component child, int indexOfChild) {
if (log.isDebugEnabled()) {
log.debug("beforeHostChildRemoved {}, in this shadow {}", child,
ShadowElementsCtrl.getCurrentInfo());
}
Method createComponents
has 59 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public Component[] createComponents(Execution exec, PageDefinition pagedef, Page page, Component parent,
Component insertBefore, VariableResolver resolver, Map<?, ?> arg) {
if (pagedef == null)
throw new IllegalArgumentException("pagedef");
Method read
has 59 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
/*package*/ static void read(NameSpace ns, ObjectInputStream s) throws IOException {
for (;;) {
try {
final String nm = (String) s.readObject();
if (nm == null)
Method load
has 59 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public void load(BindContext ctx) {
final Binder binder = getBinder();
final BindEvaluatorX eval = binder.getEvaluatorX();
final Component comp = getComponent();
final BindingExecutionInfoCollector collector = ((BinderCtrl) getBinder()).getBindingExecutionInfoCollector();
File Slider.java
has 265 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
/* Slider.java
Purpose:
Description:
Method grad
has 59 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
private static String grad(String dir, Browser template, String[] colors) {
if ("|ver|hor|diag-|diag+|rad|".indexOf("|" + dir + "|") == -1)
throw new IllegalArgumentException("Type must be ver, hor, diag-, diag+, or rad.");
if (colors.length < 2)
throw new IllegalArgumentException("Please specify more than two colors.");
Function d3_scale_ordinal
has 59 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function d3_scale_ordinal(domain, ranger) {
var index,
range,
rangeBand;
Function ajaxConvert
has 59 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function ajaxConvert( s, response, jqXHR, isSuccess ) {
var conv2, current, conv, tmp, prev,
converters = {},
// Work with a copy of dataTypes in case we need to modify it for conversion
File RepeatableInputStream.java
has 264 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
/* RepeatableInputStream.java
Purpose:
Description:
Video
has 22 methods (exceeds 20 allowed). Consider refactoring. Open
Open
public class Video extends AbstractTag {
public Video() {
super("video");
}
Button
has 22 methods (exceeds 20 allowed). Consider refactoring. Open
Open
public class Button extends AbstractTag {
public Button() {
super("button");
}
/**
Primitives
has 22 methods (exceeds 20 allowed). Consider refactoring. Open
Open
public class Primitives {
/**
* Convert Boolean object to primitive boolean.
*/
SimpleNode
has 22 methods (exceeds 20 allowed). Consider refactoring. Open
Open
public abstract class SimpleNode extends ELSupport implements Node {
protected Node parent;
protected Node[] children;
EvaluationContext
has 22 methods (exceeds 20 allowed). Consider refactoring. Open
Open
public final class EvaluationContext extends ELContext {
private final ELContext elContext;
private final FunctionMapper fnMapper;
B00878WrongValueException2
has 22 methods (exceeds 20 allowed). Consider refactoring. Open
Open
public class B00878WrongValueException2 {
String bandboxVal;
String comboboxVal;
Date dateboxVal;
Consider simplifying this complex logical expression. Open
Open
if (x instanceof Page) {
final Page page = (Page) x;
return (!_ignoreZScript && page.getZScriptVariable(fdname) != null)
|| page.hasAttributeOrFellow(fdname, true)
|| (!_ignoreXel && page.getXelVariable(null, null, fdname, true) != null);
Group
has 22 methods (exceeds 20 allowed). Consider refactoring. Open
Open
public class Group extends Row {
private boolean _open = true;
private transient List<Row> _items;
static {
Consider simplifying this complex logical expression. Open
Open
if (tolerant) {
return o2x1 <= o1x2 && o2x2 >= o1x1 && o2y1 <= o1y2 && o2y2 >= o1y1
&& o1x2 - o2x1 > tolerant && o2x2 - o1x1 > tolerant
&& o1y2 - o2y1 > tolerant && o2y2 - o1y1 > tolerant;
} else