Package org.apache.cocoon.profiling.data

Examples of org.apache.cocoon.profiling.data.InstanceRepresentation


            return true;
        }

        for (ProfilingData invocation : element.getInvocations()) {
            if (invocation.getMethod().equals("invoke")) {
                InstanceRepresentation returnValue = invocation.getReturnValue();
                InvocationResult result = InvocationResult.valueOf(returnValue.getStringRepresentation());
                return result == InvocationResult.COMPLETED || result == InvocationResult.CONTINUE;
            }
        }

        return true;
View Full Code Here


            this.invocations = new ArrayList<ProfilingData>();
            this.invocations.add(data);
        }

        public Class<?> getTargetClass() {
            InstanceRepresentation target = this.invocations.get(0).getTarget();
            return target == null ? null : target.getRepresentedClass();
        }
View Full Code Here

TOP

Related Classes of org.apache.cocoon.profiling.data.InstanceRepresentation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.