buggy_function stringlengths 1 391k | fixed_function stringlengths 0 392k |
|---|---|
public boolean equals(final Object obj) {
if (obj instanceof FastDateFormat == false) {
return false;
}
FastDateFormat other = (FastDateFormat) obj;
// no need to check parser, as it has same invariants as printer
return printer.equals(other.printer);
}
| public boolean equals(final Object obj) {
if (obj instanceof FastDateFormat == false) {
return false;
}
final FastDateFormat other = (FastDateFormat) obj;
// no need to check parser, as it has same invariants as printer
return printer.equals(other.printer);
}
|
public R setValue(final R value) {
R result = getRight();
setRight(value);
return result;
}
| public R setValue(final R value) {
final R result = getRight();
setRight(value);
return result;
}
|
public boolean equals(final Object obj) {
if (obj == this) {
return true;
}
if (obj instanceof Map.Entry<?, ?>) {
Map.Entry<?, ?> other = (Map.Entry<?, ?>) obj;
return ObjectUtils.equals(getKey(), other.getKey())
&& ObjectUtils.equals(g... | public boolean equals(final Object obj) {
if (obj == this) {
return true;
}
if (obj instanceof Map.Entry<?, ?>) {
final Map.Entry<?, ?> other = (Map.Entry<?, ?>) obj;
return ObjectUtils.equals(getKey(), other.getKey())
&& ObjectUtils.eq... |
public boolean equals(final Object obj) {
if (obj == this) {
return true;
}
if (obj instanceof Triple<?, ?, ?>) {
Triple<?, ?, ?> other = (Triple<?, ?, ?>) obj;
return ObjectUtils.equals(getLeft(), other.getLeft())
&& ObjectUtils.equals(get... | public boolean equals(final Object obj) {
if (obj == this) {
return true;
}
if (obj instanceof Triple<?, ?, ?>) {
final Triple<?, ?, ?> other = (Triple<?, ?, ?>) obj;
return ObjectUtils.equals(getLeft(), other.getLeft())
&& ObjectUtils.equa... |
public void testByte() {
assertEquals(0, new BitField(0).setByteBoolean((byte) 0, true));
assertEquals(1, new BitField(1).setByteBoolean((byte) 0, true));
assertEquals(2, new BitField(2).setByteBoolean((byte) 0, true));
assertEquals(4, new BitField(4).setByteBoolean((byte) 0, true));... | public void testByte() {
assertEquals(0, new BitField(0).setByteBoolean((byte) 0, true));
assertEquals(1, new BitField(1).setByteBoolean((byte) 0, true));
assertEquals(2, new BitField(2).setByteBoolean((byte) 0, true));
assertEquals(4, new BitField(4).setByteBoolean((byte) 0, true));... |
public void testConstructor() {
assertNotNull(new CharSetUtils());
Constructor<?>[] cons = CharSetUtils.class.getDeclaredConstructors();
assertEquals(1, cons.length);
assertTrue(Modifier.isPublic(cons[0].getModifiers()));
assertTrue(Modifier.isPublic(CharSetUtils.class.getMod... | public void testConstructor() {
assertNotNull(new CharSetUtils());
final Constructor<?>[] cons = CharSetUtils.class.getDeclaredConstructors();
assertEquals(1, cons.length);
assertTrue(Modifier.isPublic(cons[0].getModifiers()));
assertTrue(Modifier.isPublic(CharSetUtils.class.... |
public void testConstructors() {
assertEquals(null, new MutableObject<String>().getValue());
Integer i = Integer.valueOf(6);
assertSame(i, new MutableObject<Integer>(i).getValue());
assertSame("HI", new MutableObject<String>("HI").getValue());
assertSame(null, new Mu... | public void testConstructors() {
assertEquals(null, new MutableObject<String>().getValue());
final Integer i = Integer.valueOf(6);
assertSame(i, new MutableObject<Integer>(i).getValue());
assertSame("HI", new MutableObject<String>("HI").getValue());
assertSame(null, ... |
public void testAlternatePadCharacter() {
char pad='_';
assertEquals("foo", FormattableUtils.append("foo", new Formatter(), 0, -1, -1, pad).toString());
assertEquals("fo", FormattableUtils.append("foo", new Formatter(), 0, -1, 2, pad).toString());
assertEquals("_foo", FormattableUtil... | public void testAlternatePadCharacter() {
final char pad='_';
assertEquals("foo", FormattableUtils.append("foo", new Formatter(), 0, -1, -1, pad).toString());
assertEquals("fo", FormattableUtils.append("foo", new Formatter(), 0, -1, 2, pad).toString());
assertEquals("_foo", Formattab... |
public void testBetween() {
OctalUnescaper oue = new OctalUnescaper(); //.between("1", "377");
String input = "\\45";
String result = oue.translate(input);
assertEquals("Failed to unescape octal characters via the between method", "\45", result);
input = "\\377";
... | public void testBetween() {
final OctalUnescaper oue = new OctalUnescaper(); //.between("1", "377");
String input = "\\45";
String result = oue.translate(input);
assertEquals("Failed to unescape octal characters via the between method", "\45", result);
input = "\\377";
... |
public static void createHostRegistry(final ManagementResourceRegistration root, final HostControllerConfigurationPersister configurationPersister,
final HostControllerEnvironment environment, final HostRunningModeControl runningModeControl,
... | public static void createHostRegistry(final ManagementResourceRegistration root, final HostControllerConfigurationPersister configurationPersister,
final HostControllerEnvironment environment, final HostRunningModeControl runningModeControl,
... |
private ConversionExecutor getElementConverter(Collection<?> source) {
ConversionExecutor elementConverter = getElementConverter();
if (elementConverter == NoOpConversionExecutor.INSTANCE && !source.isEmpty()) {
Iterator<?> it = source.iterator();
while (it.hasNext()) {
Object value = it.next();
if (... | private ConversionExecutor getElementConverter(Collection<?> source) {
ConversionExecutor elementConverter = getElementConverter();
if (elementConverter == NoOpConversionExecutor.INSTANCE) {
Iterator<?> it = source.iterator();
while (it.hasNext()) {
Object value = it.next();
if (value != null) {
... |
private ConversionExecutor getElementConverter(Collection<?> source) {
ConversionExecutor elementConverter = getElementConverter();
if (elementConverter == NoOpConversionExecutor.INSTANCE && !source.isEmpty() && getTargetElementType() != null) {
Iterator<?> it = source.iterator();
while (it.hasNext()) {
... | private ConversionExecutor getElementConverter(Collection<?> source) {
ConversionExecutor elementConverter = getElementConverter();
if (elementConverter == NoOpConversionExecutor.INSTANCE && getTargetElementType() != null) {
Iterator<?> it = source.iterator();
while (it.hasNext()) {
Object value = it.nex... |
private void randomiseBlock() {
final boolean[] inUse = this.data.inUse;
final byte[] block = this.data.block;
final int lastShadow = this.last;
for (int i = 256; --i >= 0;)
inUse[i] = false;
int rNToGo = 0;
int rTPos = 0;
for (int i = 0, j = 1; ... | private void randomiseBlock() {
final boolean[] inUse = this.data.inUse;
final byte[] block = this.data.block;
final int lastShadow = this.last;
for (int i = 256; --i >= 0;)
inUse[i] = false;
int rNToGo = 0;
int rTPos = 0;
for (int i = 0, j = 1; ... |
public Context getInitialContext(Hashtable<?, ?> environment) {
return new NamingContext((Hashtable<String, Object>) environment);
}
} | public Context getInitialContext(Hashtable<?, ?> environment) throws NamingException {
return new NamingContext((Hashtable<String, Object>) environment);
}
} |
public void deploy(final DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException {
final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit();
final List<ResourceRoot> childRoots = deploymentUnit.getAttachment(Attachments.RESOURCE_ROOTS);
if (childRoots != ... | public void deploy(final DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException {
final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit();
final List<ResourceRoot> childRoots = deploymentUnit.getAttachment(Attachments.RESOURCE_ROOTS);
if (childRoots != ... |
public void deploy(final DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException {
final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit();
if (!DeploymentTypeMarker.isType(DeploymentType.EAR, deploymentUnit)) {
return;
}
final Resourc... | public void deploy(final DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException {
final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit();
if (!DeploymentTypeMarker.isType(DeploymentType.EAR, deploymentUnit)) {
return;
}
final Resourc... |
package org.jboss.as.patching.tool;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2012, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can red... | package org.jboss.as.patching.tool;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2012, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can red... |
public void testCompiledReport() throws Exception {
AbstractJasperReportsView view = getView(COMPILED_REPORT);
view.render(getModel(), request, response);
assertTrue(response.getContentAsByteArray().length > 0);
if (view instanceof AbstractJasperReportsSingleFormatView &&
((AbstractJasperReportsSingleForma... | public void testCompiledReport() throws Exception {
AbstractJasperReportsView view = getView(COMPILED_REPORT);
view.render(getModel(), request, response);
assertTrue(response.getContentAsByteArray().length > 0);
if (view instanceof AbstractJasperReportsSingleFormatView &&
((AbstractJasperReportsSingleForma... |
package org.jboss.as.domain.http.server;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2012, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you... | package org.jboss.as.domain.http.server;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2012, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you... |
public State execute() {
boolean direct = theConsole.getConsole() == null;
// Errors should be output in all modes.
printf(NEW_LINE, direct);
printf(" * ", direct);
printf(MESSAGES.errorHeader(), direct);
printf(" * ", direct);
printf(NEW_LINE, direct);
... | public State execute() {
boolean direct = theConsole.getConsole() == null;
// Errors should be output in all modes.
printf(NEW_LINE, direct);
printf(" * ", direct);
printf(MESSAGES.errorHeader(), direct);
printf(" * ", direct);
printf(NEW_LINE, direct);
... |
public JSPConfig(final boolean developmentMode,
final boolean disabled,
final boolean keepGenerated, final boolean trimSpaces, final boolean tagPooling,
final boolean mappedFile, final int checkInterval, int modificationTestInterval,
... | public JSPConfig(final boolean developmentMode,
final boolean disabled,
final boolean keepGenerated, final boolean trimSpaces, final boolean tagPooling,
final boolean mappedFile, final int checkInterval, int modificationTestInterval,
... |
Object[] nextSample(Collection<?> c, int k);
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache Lic... | Object[] nextSample(Collection<?> c, int k);
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache Lic... |
public void configure(DeploymentPhaseContext context, ComponentConfiguration componentConfiguration, ViewDescription viewDescription, ViewConfiguration viewConfiguration) throws DeploymentUnitProcessingException {
if (componentConfiguration.getComponentDescription() instanceof EJBComponentDescription == fal... | public void configure(DeploymentPhaseContext context, ComponentConfiguration componentConfiguration, ViewDescription viewDescription, ViewConfiguration viewConfiguration) throws DeploymentUnitProcessingException {
if (componentConfiguration.getComponentDescription() instanceof EJBComponentDescription == fal... |
package org.jboss.as.connector.logging;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can... | package org.jboss.as.connector.logging;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can... |
package org.jboss.as.connector.services.mdr;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; yo... | package org.jboss.as.connector.services.mdr;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; yo... |
package org.jboss.as.connector.services.resourceadapters.deployment.registry;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2010, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors... | package org.jboss.as.connector.services.resourceadapters.deployment.registry;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2010, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors... |
public int complete(CommandContext ctx, String buffer, int cursor, List<String> candidates) {
// if this is value completion of --headers, the parser trims values, so last spaces will be removed
// which is not good here
final String originalBuffer = ctx.getParsedCommandLine().getOriginalLi... | public int complete(CommandContext ctx, String buffer, int cursor, List<String> candidates) {
// if this is value completion of --headers, the parser trims values, so last spaces will be removed
// which is not good here
final String originalBuffer = ctx.getParsedCommandLine().getOriginalLi... |
public void execute(T input);
| void execute(T input);
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (... |
private static PathAddress getCacheAddress(String containerName, String cacheName, String cacheType) {
// create the address of the cache
PathAddress cacheAddr = PathAddress.pathAddress(
PathElement.pathElement(SUBSYSTEM, InfinispanExtension.SUBSYSTEM_NAME),
PathEleme... | private static PathAddress getCacheAddress(String containerName, String cacheName, String cacheType) {
// create the address of the cache
PathAddress cacheAddr = PathAddress.pathAddress(
PathElement.pathElement(SUBSYSTEM, InfinispanExtension.SUBSYSTEM_NAME),
PathEleme... |
response = client.execute(new HttpGet(SessionOperationServlet.createGetURI(baseURL2, "a")));
/*
* JBoss, Home of Professional Open Source.
* Copyright 2013, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individu... | response = client.execute(new HttpGet(SessionOperationServlet.createGetURI(baseURL2, "a")));
/*
* JBoss, Home of Professional Open Source.
* Copyright 2013, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individu... |
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException {
String operation = getRequiredParameter(req, OPERATION);
HttpSession session = req.getSession(true);
resp.addHeader(SESSION_ID, session.getId());
System.out.println(String.format("%s?%s;j... | protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException {
String operation = getRequiredParameter(req, OPERATION);
HttpSession session = req.getSession(true);
resp.addHeader(SESSION_ID, session.getId());
System.out.println(String.format("%s?%s;j... |
public void redirectAttribute() throws Exception {
initServletWithControllers(RedirectAttributesController.class);
MockHttpServletRequest request = new MockHttpServletRequest("POST", "/messages");
HttpSession session = request.getSession();
MockHttpServletResponse response = new MockHttpServletResponse();
g... | public void redirectAttribute() throws Exception {
initServletWithControllers(RedirectAttributesController.class);
MockHttpServletRequest request = new MockHttpServletRequest("POST", "/messages");
HttpSession session = request.getSession();
MockHttpServletResponse response = new MockHttpServletResponse();
g... |
protected double homoscedasticTTest(double m1, double m2, double v1,
double v2, double n1, double n2)
throws MathException {
double t = Math.abs(t(m1, m2, v1, v2, n1, n2));
double degreesOfFreedom = 0;
degreesOfFreedom = (double) (n1 + n2 - 2);
TDistribution tDist... | protected double homoscedasticTTest(double m1, double m2, double v1,
double v2, double n1, double n2)
throws MathException {
double t = Math.abs(homoscedasticT(m1, m2, v1, v2, n1, n2));
double degreesOfFreedom = 0;
degreesOfFreedom = (double) (n1 + n2 - 2);
TDistr... |
public void addValue(double v) {
DynaProperty[] props = new DynaProperty[] {
new DynaProperty(propertyName, Double.class)
};
BasicDynaClass dynaClass = new BasicDynaClass(null, null, props);
DynaBean dynaBean = null;
try {
dynaBean = dynaClass.newInstance();
} catch... | public void addValue(double v) {
DynaProperty[] props = new DynaProperty[] {
new DynaProperty(propertyName, Double.class)
};
BasicDynaClass dynaClass = new BasicDynaClass(null, null, props);
DynaBean dynaBean = null;
try {
dynaBean = dynaClass.newInstance();
} catch... |
public ArgumentOutsideDomainException(double argument, double lower, double upper) {
super(argument,
"Argument {0} outside domain [{1} ; {2}]",
new Object[] { Double.valueOf(argument), Double.valueOf(lower), Double.valueOf(upper) });
}
| public ArgumentOutsideDomainException(double argument, double lower, double upper) {
super(argument,
"Argument {0} outside domain [{1} ; {2}]",
new Object[] { new Double(argument), new Double(lower), new Double(upper) });
}
|
public DimensionMismatchException(int dimension1, int dimension2) {
super("dimension mismatch {0} != {1}",
new Object[] {
Integer.valueOf(dimension1), Integer.valueOf(dimension2)
});
this.dimension1 = dimension1;
this.dimension2 = dimension2;
}... | public DimensionMismatchException(int dimension1, int dimension2) {
super("dimension mismatch {0} != {1}",
new Object[] {
new Integer(dimension1), new Integer(dimension2)
});
this.dimension1 = dimension1;
this.dimension2 = dimension2;
}
|
public DuplicateSampleAbscissaException(double abscissa, int i1, int i2) {
super("Abscissa {0} is duplicated at both indices {1} and {2}",
new Object[] { Double.valueOf(abscissa), Integer.valueOf(i1), Integer.valueOf(i2) });
}
| public DuplicateSampleAbscissaException(double abscissa, int i1, int i2) {
super("Abscissa {0} is duplicated at both indices {1} and {2}",
new Object[] { new Double(abscissa), new Integer(i1), new Integer(i2) });
}
|
public MaxIterationsExceededException(int maxIterations) {
super("Maximal number of iterations ({0}) exceeded",
new Object[] { Integer.valueOf(maxIterations) });
this.maxIterations = maxIterations;
}
| public MaxIterationsExceededException(int maxIterations) {
super("Maximal number of iterations ({0}) exceeded",
new Object[] { new Integer(maxIterations) });
this.maxIterations = maxIterations;
}
|
Object[] nextSample(Collection c, int k);
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache Licens... | Object[] nextSample(Collection c, int k);
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache Licens... |
public double transform(Object o) throws MathException{
if (o == null) {
throw new MathException("Conversion Exception in Transformation, Object is null", new Object[0]);
}
if (o instanceof Number) {
return ((Number)o).doubleValue();
}
t... | public double transform(Object o) throws MathException{
if (o == null) {
throw new MathException("Conversion Exception in Transformation, Object is null", new Object[0]);
}
if (o instanceof Number) {
return ((Number)o).doubleValue();
}
t... |
public void testEqualsAndHashCode() {
StatisticalSummaryValues u = new StatisticalSummaryValues(1, 2, 3, 4, 5, 6);
StatisticalSummaryValues t = null;
assertTrue("reflexive", u.equals(u));
assertFalse("non-null compared to null", u.equals(t));
assertFalse("wrong type", u.equa... | public void testEqualsAndHashCode() {
StatisticalSummaryValues u = new StatisticalSummaryValues(1, 2, 3, 4, 5, 6);
StatisticalSummaryValues t = null;
assertTrue("reflexive", u.equals(u));
assertFalse("non-null compared to null", u.equals(t));
assertFalse("wrong type", u.equa... |
protected void performRemove(NewOperationContext context, final ModelNode operation, final ModelNode model) throws OperationFailedException {
context.removeModel(PathAddress.EMPTY_ADDRESS);
}
| protected void performRemove(NewOperationContext context, final ModelNode operation, final ModelNode model) throws OperationFailedException {
context.removeResource(PathAddress.EMPTY_ADDRESS);
}
|
protected <C extends Collection<V>> AbstractMultiValuedMap(final Map<K, ? super C> map,
final Class<C> collectionClazz, final int initialCollectionCapacity) {
if (map == null) {
throw new IllegalArgumentException("Map must not be null");
}
if (initialCollectionCapacit... | protected <C extends Collection<V>> AbstractMultiValuedMap(final Map<K, ? super C> map,
final Class<C> collectionClazz, final int initialCollectionCapacity) {
if (map == null) {
throw new IllegalArgumentException("Map must not be null");
}
if (initialCollectionCapacit... |
private TypedValue createNewInstance(ExpressionState state) throws EvaluationException {
Object[] arguments = new Object[getChildCount() - 1];
Class<?>[] argumentTypes = new Class[getChildCount() - 1];
for (int i = 0; i < arguments.length; i++) {
TypedValue childValue = children[i + 1].getValueInternal(state)... | private TypedValue createNewInstance(ExpressionState state) throws EvaluationException {
Object[] arguments = new Object[getChildCount() - 1];
Class<?>[] argumentTypes = new Class[getChildCount() - 1];
for (int i = 0; i < arguments.length; i++) {
TypedValue childValue = children[i + 1].getValueInternal(state)... |
private Class<?>[] getTypes(Object... arguments) {
Class<?>[] argumentTypes = new Class[arguments.length];
for (int i = 0; i < arguments.length; i++) {
argumentTypes[i] = (arguments[i]==null?Object.class:arguments[i].getClass());
}
return argumentTypes;
}
| private Class<?>[] getTypes(Object... arguments) {
Class<?>[] argumentTypes = new Class[arguments.length];
for (int i = 0; i < arguments.length; i++) {
argumentTypes[i] = (arguments[i]==null?null:arguments[i].getClass());
}
return argumentTypes;
}
|
private static void reportError(String message) {
final boolean fatal = false; // TODO set true once all bugs have been fixed
if (fatal) {
Assert.fail(message);
} else {
System.out.println(message);
}
}
private static abstract class SpecialCompare... | private static void reportError(String message) {
final boolean fatal = false; // TODO set true once all bugs have been fixed
if (fatal) {
Assert.fail(message);
} else {
System.out.println(message);
}
}
private static abstract class SpecialCompare... |
public interface BaseUnivariateOptimizer<FUNC extends UnivariateFunction>
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this fil... | public interface BaseUnivariateOptimizer<FUNC extends UnivariateFunction>
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this fil... |
extends BaseUnivariateOptimizer<UnivariateFunction> {}
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the ... | extends BaseUnivariateOptimizer<UnivariateFunction> {}
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the ... |
protected void processComponentConfig(final DeploymentUnit deploymentUnit, final DeploymentPhaseContext phaseContext, final CompositeIndex index, final ComponentConfiguration componentConfiguration) {
final ClassInfo classInfo = index.getClassByName(DotName.createSimple(componentConfiguration.getComponentCl... | protected void processComponentConfig(final DeploymentUnit deploymentUnit, final DeploymentPhaseContext phaseContext, final CompositeIndex index, final ComponentConfiguration componentConfiguration) {
final ClassInfo classInfo = index.getClassByName(DotName.createSimple(componentConfiguration.getComponentCl... |
public Object getObjectInstance(Object serviceValue, Object obj, Name name, Context nameCtx, Hashtable<?, ?> environment) throws Exception {
final Reference reference = asReference(obj);
final ClassRefAddr viewClassAddr = (ClassRefAddr) reference.get("view-class");
if (viewClassAddr == null)... | public Object getObjectInstance(Object serviceValue, Object obj, Name name, Context nameCtx, Hashtable<?, ?> environment) throws Exception {
final Reference reference = asReference(obj);
final ClassRefAddr viewClassAddr = (ClassRefAddr) reference.get("view-class");
if (viewClassAddr == null)... |
public PoissonDistributionImpl(double p, double epsilon, int maxIterations) {
if (p <= 0) {
throw new NotStrictlyPositiveException(LocalizedFormats.MEAN, p);
}
mean = p;
normal = new NormalDistributionImpl(p, FastMath.sqrt(p));
this.epsilon = epsilon;
this... | public PoissonDistributionImpl(double p, double epsilon, int maxIterations) {
if (p <= 0) {
throw new NotStrictlyPositiveException(LocalizedFormats.MEAN, p);
}
mean = p;
normal = new NormalDistribution(p, FastMath.sqrt(p));
this.epsilon = epsilon;
this.max... |
public TypedValue read(EvaluationContext context, Object target, String name) throws AccessException {
if (target == null) {
return null;
}
Class<?> type = (target instanceof Class ? (Class<?>) target : target.getClass());
if (type.isArray() && name.equals("length")) {
if (target instanceof Class) {
... | public TypedValue read(EvaluationContext context, Object target, String name) throws AccessException {
if (target == null) {
throw new AccessException("Cannot read property of null target");
}
Class<?> type = (target instanceof Class ? (Class<?>) target : target.getClass());
if (type.isArray() && name.equa... |
public final String translate(CharSequence input) {
if (input == null) {
return null;
}
try {
StringWriter writer = new StringWriter(input.length() * 2); // TODO: Make the 2 part of the API???
translate(input, writer);
return writer.toString()... | public final String translate(CharSequence input) {
if (input == null) {
return null;
}
try {
StringWriter writer = new StringWriter(input.length() * 2);
translate(input, writer);
return writer.toString();
} catch (IOException ioe) {
... |
public void handleClose(Channel closed, IOException exception) {
proxyController.shutdown();
}
});
clientChannel.receiveMessage(ManagementChannelReceiver.createDelegating(proxyController));
return proxyController;
}
| public void handleClose(Channel closed, IOException exception) {
proxyController.shutdownNow();
}
});
clientChannel.receiveMessage(ManagementChannelReceiver.createDelegating(proxyController));
return proxyController;
}
|
private Map<Set<ServerIdentity>, ModelNode> getServerProfileOperations(ModelNode operation, PathAddress address,
ModelNode domain, ModelNode host) {
if (address.size() == 1) {
return Collections.emptyMap();
}
String profileName = address.getElement(0).getValue();
... | private Map<Set<ServerIdentity>, ModelNode> getServerProfileOperations(ModelNode operation, PathAddress address,
ModelNode domain, ModelNode host) {
if (address.size() == 1) {
return Collections.emptyMap();
}
String profileName = address.getElement(0).getValue();
... |
private void updateExitTypeDescriptor() {
CachedMethodExecutor executorToCheck = this.cachedExecutor;
if (executorToCheck.get() instanceof ReflectiveMethodExecutor) {
Method method = ((ReflectiveMethodExecutor) executorToCheck.get()).getMethod();
this.exitTypeDescriptor = CodeFlow.toDescriptor(method.getRetu... | private void updateExitTypeDescriptor() {
CachedMethodExecutor executorToCheck = this.cachedExecutor;
if (executorToCheck != null && executorToCheck.get() instanceof ReflectiveMethodExecutor) {
Method method = ((ReflectiveMethodExecutor) executorToCheck.get()).getMethod();
this.exitTypeDescriptor = CodeFlow.... |
public void initialize(ExtensionContext context) {
final SubsystemRegistration subsystem = context.registerSubsystem(SUBSYSTEM_NAME);
final ManagementResourceRegistration registration = subsystem.registerSubsystemModel(OSGiSubsystemProviders.SUBSYSTEM);
registration.registerOperationHandler(... | public void initialize(ExtensionContext context) {
final SubsystemRegistration subsystem = context.registerSubsystem(SUBSYSTEM_NAME);
final ManagementResourceRegistration registration = subsystem.registerSubsystemModel(OSGiSubsystemProviders.SUBSYSTEM);
registration.registerOperationHandler(... |
protected void performRuntime(OperationContext context, ModelNode operation, ModelNode model) throws OperationFailedException {
String propName = operation.get(ModelDescriptionConstants.OP_ADDR).asObject().get(ModelConstants.FRAMEWORK_PROPERTY).asString();
SubsystemState subsystemState = SubsystemSt... | protected void performRuntime(OperationContext context, ModelNode operation, ModelNode model) throws OperationFailedException {
String propName = operation.get(ModelDescriptionConstants.OP_ADDR).asObject().get(ModelConstants.PROPERTY).asString();
SubsystemState subsystemState = SubsystemState.getSub... |
private List<ModelNode> parseFrameworkProperties(XMLExtendedStreamReader reader, ModelNode address, List<ModelNode> operations) throws XMLStreamException {
requireNoAttributes(reader);
List<ModelNode> result = new ArrayList<ModelNode>();
// Handle elements
while (reader.hasNext() ... | private List<ModelNode> parseFrameworkProperties(XMLExtendedStreamReader reader, ModelNode address, List<ModelNode> operations) throws XMLStreamException {
requireNoAttributes(reader);
List<ModelNode> result = new ArrayList<ModelNode>();
// Handle elements
while (reader.hasNext() ... |
private List<ModelNode> parseFrameworkProperties(XMLExtendedStreamReader reader, ModelNode address, List<ModelNode> operations) throws XMLStreamException {
requireNoAttributes(reader);
List<ModelNode> result = new ArrayList<ModelNode>();
// Handle elements
while (reader.hasNext() ... | private List<ModelNode> parseFrameworkProperties(XMLExtendedStreamReader reader, ModelNode address, List<ModelNode> operations) throws XMLStreamException {
requireNoAttributes(reader);
List<ModelNode> result = new ArrayList<ModelNode>();
// Handle elements
while (reader.hasNext() ... |
public ModelNode getModelDescription(final Locale locale) {
ModelNode subsystem = new ModelNode();
ResourceBundle resbundle = getResourceBundle(locale);
subsystem.get(DESCRIPTION).set(resbundle.getString("subsystem"));
subsystem.get(HEAD_COMMENT_ALLOWED).set(true... | public ModelNode getModelDescription(final Locale locale) {
ModelNode subsystem = new ModelNode();
ResourceBundle resbundle = getResourceBundle(locale);
subsystem.get(DESCRIPTION).set(resbundle.getString("subsystem"));
subsystem.get(HEAD_COMMENT_ALLOWED).set(true... |
public void start(StartContext context) throws StartException {
String pathname = "file://RaActivator" + deploymentName;
try {
ResourceAdapterActivator activator = new ResourceAdapterActivator(context.getChildTarget(), new URL(pathname), deploymentName,
new File(pat... | public void start(StartContext context) throws StartException {
String pathname = "file://RaActivator" + deploymentName;
try {
ResourceAdapterActivator activator = new ResourceAdapterActivator(context.getChildTarget(), new URL(pathname), deploymentName,
new File(pat... |
public void start(StartContext context) throws StartException {
final URL url = connectorXmlDescriptor == null ? null : connectorXmlDescriptor.getUrl();
deploymentName = connectorXmlDescriptor == null ? null : connectorXmlDescriptor.getDeploymentName();
final File root = connectorXmlDescript... | public void start(StartContext context) throws StartException {
final URL url = connectorXmlDescriptor == null ? null : connectorXmlDescriptor.getUrl();
deploymentName = connectorXmlDescriptor == null ? null : connectorXmlDescriptor.getDeploymentName();
final File root = connectorXmlDescript... |
import org.jboss.as.network.SocketBinding;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you ... | import org.jboss.as.network.SocketBinding;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you ... |
import org.jboss.as.network.SocketBinding;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you ... | import org.jboss.as.network.SocketBinding;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you ... |
private void setupNoRandPartC() throws IOException {
if (this.su_j2 < this.su_z) {
int su_ch2Shadow = this.su_ch2;
this.currentChar = su_ch2Shadow;
this.crc.updateCRC(su_ch2Shadow);
this.su_j2++;
this.currentState = NO_RAND_PART_C_STATE;
} ... | private void setupNoRandPartC() throws IOException {
if (this.su_j2 < this.su_z) {
int su_ch2Shadow = this.su_ch2;
this.currentChar = su_ch2Shadow;
this.crc.updateCRC(su_ch2Shadow);
this.su_j2++;
this.currentState = NO_RAND_PART_C_STATE;
} ... |
String REDIRECT_PORT = "redirect-port";
/*
* JBoss, Home of Professional Open Source.
* Copyright 2010, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can... | String REDIRECT_PORT = "redirect-port";
/*
* JBoss, Home of Professional Open Source.
* Copyright 2010, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can... |
private void createKeytab(final String principalName, final String passPhrase, final File keytabFile) throws IOException {
LOGGER.info("Principal name: " + principalName);
final KerberosTime timeStamp = new KerberosTime();
DataOutputStream dos = null;
try {
dos = new Dat... | private void createKeytab(final String principalName, final String passPhrase, final File keytabFile) throws IOException {
LOGGER.info("Principal name: " + principalName);
final KerberosTime timeStamp = new KerberosTime();
DataOutputStream dos = null;
try {
dos = new Dat... |
public void testRegistryConfiguration() throws Throwable {
ServiceController<?> controller = serviceContainer.getService(ConnectorServices.RA_REPOSITORY_SERVICE);
assertNotNull(controller);
ResourceAdapterRepository repository = (ResourceAdapterRepository) controller.getValue();
asse... | public void testRegistryConfiguration() throws Throwable {
ServiceController<?> controller = serviceContainer.getService(ConnectorServices.RA_REPOSITORY_SERVICE);
assertNotNull(controller);
ResourceAdapterRepository repository = (ResourceAdapterRepository) controller.getValue();
asse... |
public void testRegistryConfiguration() throws Throwable {
ServiceController<?> controller = serviceContainer.getService(ConnectorServices.RA_REPOSITORY_SERVICE);
assertNotNull(controller);
ResourceAdapterRepository repository = (ResourceAdapterRepository) controller.getValue();
asse... | public void testRegistryConfiguration() throws Throwable {
ServiceController<?> controller = serviceContainer.getService(ConnectorServices.RA_REPOSITORY_SERVICE);
assertNotNull(controller);
ResourceAdapterRepository repository = (ResourceAdapterRepository) controller.getValue();
asse... |
private void testTransformer_1_0(ModelTestControllerVersion controllerVersion) throws Exception {
String subsystemXml = "threads-transform-1_0.xml"; //This has no expressions not understood by 1.0
ModelVersion modelVersion = ModelVersion.create(1, 0, 0); //The old model version
//Use the n... | private void testTransformer_1_0(ModelTestControllerVersion controllerVersion) throws Exception {
String subsystemXml = "threads-transform-1_0.xml"; //This has no expressions not understood by 1.0
ModelVersion modelVersion = ModelVersion.create(1, 0, 0); //The old model version
//Use the n... |
public void deploy(DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException {
final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit();
final String contextName = deploymentUnit.getName();
final ServiceRegistry serviceRegistry = phaseContext.getServiceRegi... | public void deploy(DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException {
final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit();
final String contextName = deploymentUnit.getName();
final ServiceRegistry serviceRegistry = phaseContext.getServiceRegi... |
public void deploy(DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException {
// Check if we already have an OSGi deployment
final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit();
OSGiMetaData metadata = OSGiMetaDataAttachment.getOSGiMetaData(deployment... | public void deploy(DeploymentPhaseContext phaseContext) throws DeploymentUnitProcessingException {
// Check if we already have an OSGi deployment
final DeploymentUnit deploymentUnit = phaseContext.getDeploymentUnit();
OSGiMetaData metadata = OSGiMetaDataAttachment.getOSGiMetaData(deployment... |
private final Bundle bundle;
BundleReferenceClassLoader(Configuration configuration, Bundle bundle) {
super(configuration);
if (bundle == null)
throw MESSAGES.nullVar("bundle");
this.bundle = bundle;
}
| private final Bundle bundle;
BundleReferenceClassLoader(Configuration configuration, Bundle bundle) {
super(configuration);
if (bundle == null)
throw MESSAGES.illegalArgumentNull("bundle");
this.bundle = bundle;
}
|
public synchronized void start(final StartContext startContext) throws StartException {
ClassLoader oldTccl = Thread.currentThread().getContextClassLoader();
try {
Thread.currentThread().setContextClassLoader(module.getClassLoader());
DeploymentInfo deploymentInfo = createSer... | public synchronized void start(final StartContext startContext) throws StartException {
ClassLoader oldTccl = Thread.currentThread().getContextClassLoader();
try {
Thread.currentThread().setContextClassLoader(module.getClassLoader());
DeploymentInfo deploymentInfo = createSer... |
private void processBindings(DeploymentPhaseContext phaseContext, ComponentConfiguration configuration, ServiceTarget serviceTarget, ServiceName contextServiceName, ServiceName compServiceName, InjectionSource.ResolutionContext resolutionContext, List<BindingConfiguration> bindings, IntHolder handleCount) throws De... | private void processBindings(DeploymentPhaseContext phaseContext, ComponentConfiguration configuration, ServiceTarget serviceTarget, ServiceName contextServiceName, ServiceName compServiceName, InjectionSource.ResolutionContext resolutionContext, List<BindingConfiguration> bindings, IntHolder handleCount) throws De... |
public void testInvokeClosure() {
StringBuffer buf = new StringBuffer("Hello"); // Only StringBuffer has setLength() method
ClosureUtils.invokerClosure("reverse").execute(buf);
assertEquals("olleH", buf.toString());
buf = new StringBuffer("Hello");
ClosureUtils.invokerClosure... | public void testInvokeClosure() {
StringBuffer buf = new StringBuffer("Hello"); // Only StringBuffer has setLength() method
ClosureUtils.invokerClosure("reverse").execute(buf);
assertEquals("olleH", buf.toString());
buf = new StringBuffer("Hello");
ClosureUtils.invokerClosure... |
public Integer create() {
index++;
return new Integer(index);
}
});
assertNotNull(list.get(5));
assertEquals(6, list.size());
assertNotNull(list.get(5));
assertEquals(6, list.size());
}
| public Integer create() {
index++;
return Integer.valueOf(index);
}
});
assertNotNull(list.get(5));
assertEquals(6, list.size());
assertNotNull(list.get(5));
assertEquals(6, list.size());
}
|
public void initialiseTestObjects() throws Exception {
cObject = new Object();
cString = "Hello";
cInteger = new Integer(6);
}
| public void initialiseTestObjects() throws Exception {
cObject = new Object();
cString = "Hello";
cInteger = Integer.valueOf(6);
}
|
public void testIterator() {
final Iterator<E> iter = makeObject();
for (final int element : testArray) {
final Integer testValue = new Integer(element);
final Number iterValue = (Number) iter.next();
assertEquals("Iteration value is correct", testValue, iterValu... | public void testIterator() {
final Iterator<E> iter = makeObject();
for (final int element : testArray) {
final Integer testValue = Integer.valueOf(element);
final Number iterValue = (Number) iter.next();
assertEquals("Iteration value is correct", testValue, iter... |
public void testPutAll() {
final Map<Object, String> map = new HashMap<Object, String>();
map.put("One", "One");
map.put("Two", "Two");
map.put("one", "Three");
map.put(null, "Four");
map.put(new Integer(20), "Five");
final Map<Object, String> caseInsensitiveM... | public void testPutAll() {
final Map<Object, String> map = new HashMap<Object, String>();
map.put("One", "One");
map.put("Two", "Two");
map.put("one", "Three");
map.put(null, "Four");
map.put(Integer.valueOf(20), "Five");
final Map<Object, String> caseInsensit... |
public void testMapEquals() {
final MultiValueMap<K, V> one = new MultiValueMap<K, V>();
final Integer value = new Integer(1);
one.put((K) "One", value);
one.remove("One", value);
final MultiValueMap<K, V> two = new MultiValueMap<K, V>();
assertEquals(two, one);
... | public void testMapEquals() {
final MultiValueMap<K, V> one = new MultiValueMap<K, V>();
final Integer value = Integer.valueOf(1);
one.put((K) "One", value);
one.remove("One", value);
final MultiValueMap<K, V> two = new MultiValueMap<K, V>();
assertEquals(two, one);
... |
protected void processDeployment(final String hostName, final WarMetaData warMetaData, final DeploymentUnit deploymentUnit,
final ServiceTarget serviceTarget) throws DeploymentUnitProcessingException {
final VirtualFile deploymentRoot = deploymentUnit.getAttachment(Attac... | protected void processDeployment(final String hostName, final WarMetaData warMetaData, final DeploymentUnit deploymentUnit,
final ServiceTarget serviceTarget) throws DeploymentUnitProcessingException {
final VirtualFile deploymentRoot = deploymentUnit.getAttachment(Attac... |
public void testNewSessionIsOutdated() throws Exception {
Engine engine = new MockEngine();
engine.setName("jboss.web");
Host host = new MockHost();
host.setName("localhost");
engine.addChild(host);
StandardContext context = new StandardContext();
context.setN... | public void testNewSessionIsOutdated() throws Exception {
Engine engine = new MockEngine();
engine.setName("jboss.web");
Host host = new MockHost();
host.setName("localhost");
engine.addChild(host);
StandardContext context = new StandardContext();
context.setN... |
public synchronized ExtensibleConfigurationPersister getConfigurationPersister() {
if (configurationPersister == null) {
if (serverEnvironment == null) {
configurationPersister = new NullConfigurationPersister(new StandaloneXml(moduleLoader));
}
... | public synchronized ExtensibleConfigurationPersister getConfigurationPersister() {
if (configurationPersister == null) {
if (serverEnvironment == null) {
configurationPersister = new NullConfigurationPersister(new StandaloneXml(moduleLoader));
}
... |
protected int adjustYear(int twoDigitYear) {
int trial= twoDigitYear + thisYear - thisYear%100;
if(trial < thisYear+20) {
return trial;
}
return trial-100;
}
| private static int copy(KeyValue[] fieldKeyValues, int offset, String[] values) {
if(values!=null) {
for(int i= 0; i<values.length; ++i) {
String value= values[i];
if(value.length()>0) {
fieldKeyValues[offset++]= new KeyValue(value, i);
... |
protected void performRuntime(OperationContext context, ModelNode operation, ModelNode model, ServiceVerificationHandler verificationHandler, List<ServiceController<?>> newControllers) throws OperationFailedException {
final ModelNode address = operation.require(OP_ADDR);
final String driverName = P... | protected void performRuntime(OperationContext context, ModelNode operation, ModelNode model, ServiceVerificationHandler verificationHandler, List<ServiceController<?>> newControllers) throws OperationFailedException {
final ModelNode address = operation.require(OP_ADDR);
final String driverName = P... |
package org.jboss.as.testsuite.integration.deployment.classloading.ear.subdeployments.ejb;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual... | package org.jboss.as.testsuite.integration.deployment.classloading.ear.subdeployments.ejb;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual... |
package org.jboss.as.testsuite.integration.ee.injection.resource.basic;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
... | package org.jboss.as.testsuite.integration.ee.injection.resource.basic;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
... |
package org.jboss.as.testsuite.integration.ee.injection.resource.ejblocalref;
/*
* JBoss, Home of Professional Open Source
* Copyright 2010, Red Hat Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
*... | package org.jboss.as.testsuite.integration.ee.injection.resource.ejblocalref;
/*
* JBoss, Home of Professional Open Source
* Copyright 2010, Red Hat Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
*... |
package org.jboss.as.testsuite.integration.ee.injection.resource.multipleinterceptors;
/*
* JBoss, Home of Professional Open Source
* Copyright 2010, Red Hat Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributo... | package org.jboss.as.testsuite.integration.ee.injection.resource.multipleinterceptors;
/*
* JBoss, Home of Professional Open Source
* Copyright 2010, Red Hat Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributo... |
package org.jboss.as.testsuite.integration.ee.injection.resource.multipleinterceptors;
/*
* JBoss, Home of Professional Open Source
* Copyright 2010, Red Hat Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributo... | package org.jboss.as.testsuite.integration.ee.injection.resource.multipleinterceptors;
/*
* JBoss, Home of Professional Open Source
* Copyright 2010, Red Hat Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributo... |
package org.jboss.as.testsuite.integration.ee.injection.resource.multipleinterceptors;
/*
* JBoss, Home of Professional Open Source
* Copyright 2010, Red Hat Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributo... | package org.jboss.as.testsuite.integration.ee.injection.resource.multipleinterceptors;
/*
* JBoss, Home of Professional Open Source
* Copyright 2010, Red Hat Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributo... |
package org.jboss.as.testsuite.integration.ee.injection.resource.superclass;
/*
* JBoss, Home of Professional Open Source
* Copyright 2010, Red Hat Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* ... | package org.jboss.as.testsuite.integration.ee.injection.resource.superclass;
/*
* JBoss, Home of Professional Open Source
* Copyright 2010, Red Hat Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* ... |
package org.jboss.as.testsuite.integration.ejb.beanclass.validity;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* Thi... | package org.jboss.as.testsuite.integration.ejb.beanclass.validity;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* Thi... |
package org.jboss.as.testsuite.integration.ejb.beanclass.validity;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* Thi... | package org.jboss.as.testsuite.integration.ejb.beanclass.validity;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* Thi... |
package org.jboss.as.testsuite.integration.ejb.beanclass.validity;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* Thi... | package org.jboss.as.testsuite.integration.ejb.beanclass.validity;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* Thi... |
package org.jboss.as.testsuite.integration.ejb.beanclass.validity;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* Thi... | package org.jboss.as.testsuite.integration.ejb.beanclass.validity;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* Thi... |
package org.jboss.as.testsuite.integration.ejb.beanclass.validity;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* Thi... | package org.jboss.as.testsuite.integration.ejb.beanclass.validity;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* Thi... |
package org.jboss.as.testsuite.integration.ejb.beanclass.validity;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* Thi... | package org.jboss.as.testsuite.integration.ejb.beanclass.validity;
/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* Thi... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.