This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ArquillianExtension implements LoadableExtension { | |
@Override | |
public void register(ExtensionBuilder builder) { | |
builder.service(BrowserCapabilities.class, PhantomJSIgnoringSSL.class); | |
} | |
public static class PhantomJSIgnoringSSL implements BrowserCapabilities { | |
@Override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* JBoss, Home of Professional Open Source | |
* Copyright 2013, Red Hat, Inc. and individual contributors | |
* by the @authors tag. See the copyright.txt in the distribution for a | |
* full listing of individual contributors. | |
* | |
* This is free software; you can redistribute it and/or modify it | |
* under the terms of the GNU Lesser General Public License as | |
* published by the Free Software Foundation; either version 2.1 of | |
* the License, or (at your option) any later version. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Retention(RetentionPolicy.RUNTIME) | |
@Target(ElementType.FIELD) | |
@ImplementsLocationStrategy(ByJQuery.JQueryLocationStrategy.class) | |
public @interface $ { | |
String value(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* JBoss, Home of Professional Open Source | |
* Copyright , Red Hat, Inc. and individual contributors | |
* by the @authors tag. See the copyright.txt in the distribution for a | |
* full listing of individual contributors. | |
* | |
* This is free software; you can redistribute it and/or modify it | |
* under the terms of the GNU Lesser General Public License as | |
* published by the Free Software Foundation; either version 2.1 of | |
* the License, or (at your option) any later version. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@JavaScript("ChartTest") | |
@Dependency("js-tests/chart-test.js") | |
public interface ChartTest { | |
void testSeries(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.richfaces.component; | |
/** | |
* The component is able to decide whether its subtree should be visited. | |
* | |
* @author Lukas Fryc | |
*/ | |
public interface VisitChildrenRejectable { | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.richfaces; | |
import static org.hamcrest.Matchers.empty; | |
import static org.hamcrest.Matchers.is; | |
import static org.junit.Assert.assertThat; | |
import static org.junit.Assert.assertTrue; | |
import java.util.Arrays; | |
import java.util.List; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<s:chart> | |
<r:repeat value="#{persons}" var="person"> | |
<s:series type="line"> | |
<r:repeat value="#{person.points}" var="p"> | |
<s:point x="#{p.x}" y="#{p.y}"/> | |
</r:repeat> | |
</s:series> | |
</r:repeat> | |
</s:chart> |
The contents of this page was moved to:
https://github.com/richfaces/richfaces/wiki/Debugging-RichFaces
Thanks for understanding. :-)