Removed target directory from svn

git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portlets/user/user-statistics@121722 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Costantino Perciante 2015-12-09 13:59:09 +00:00
parent a77b668ea3
commit ce4cd45881
154 changed files with 5 additions and 14508 deletions

View File

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="target/user-statistics-portlet-0.0.1-SNAPSHOT/WEB-INF/classes" path="src/main/java">
<classpathentry kind="src" output="target/user-statistics-0.0.1-SNAPSHOT/WEB-INF/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/user-statistics-portlet-0.0.1-SNAPSHOT/WEB-INF/classes" path="src/main/resources">
<classpathentry excluding="**" kind="src" output="target/user-statistics-0.0.1-SNAPSHOT/WEB-INF/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
@ -34,5 +34,5 @@
</attributes>
</classpathentry>
<classpathentry kind="con" path="com.google.gwt.eclipse.core.GWT_CONTAINER"/>
<classpathentry kind="output" path="target/user-statistics-portlet-0.0.1-SNAPSHOT/WEB-INF/classes"/>
<classpathentry kind="output" path="target/user-statistics-0.0.1-SNAPSHOT/WEB-INF/classes"/>
</classpath>

View File

@ -5,6 +5,6 @@
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
<property name="java-output-path" value="/user-statistics/target/user-statistics-portlet-0.0.1-SNAPSHOT/WEB-INF/classes"/>
<property name="context-root" value="user-statistics-portlet"/>
<property name="context-root" value="user-statistics"/>
</wb-module>
</project-modules>

View File

@ -11,7 +11,7 @@
</parent>
<groupId>org.gcube.portlets.user</groupId>
<artifactId>user-statistics-portlet</artifactId>
<artifactId>user-statistics</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>User statistics portlet</name>

File diff suppressed because it is too large Load Diff

View File

@ -1,80 +0,0 @@
package com.google.gwt.i18n.client.constants;
public class NumberConstantsImpl_ implements com.google.gwt.i18n.client.constants.NumberConstantsImpl {
public java.lang.String notANumber() {
return "NaN";
}
public java.lang.String currencyPattern() {
return "¤#,##0.00";
}
public java.lang.String decimalPattern() {
return "#,##0.###";
}
public java.lang.String decimalSeparator() {
return ".";
}
public java.lang.String defCurrencyCode() {
return "USD";
}
public java.lang.String exponentialSymbol() {
return "E";
}
public java.lang.String globalCurrencyPattern() {
return "¤¤¤¤#,##0.00 ¤¤";
}
public java.lang.String groupingSeparator() {
return ",";
}
public java.lang.String infinity() {
return "";
}
public java.lang.String minusSign() {
return "-";
}
public java.lang.String monetaryGroupingSeparator() {
return ",";
}
public java.lang.String monetarySeparator() {
return ".";
}
public java.lang.String percent() {
return "%";
}
public java.lang.String percentPattern() {
return "#,##0%";
}
public java.lang.String perMill() {
return "";
}
public java.lang.String plusSign() {
return "+";
}
public java.lang.String scientificPattern() {
return "#E0";
}
public java.lang.String simpleCurrencyPattern() {
return "¤¤¤¤#,##0.00";
}
public java.lang.String zeroDigit() {
return "0";
}
}

View File

@ -1,30 +0,0 @@
package com.google.gwt.i18n.client.impl;
import com.google.gwt.core.client.GWT;
import com.google.gwt.i18n.client.LocaleInfo;
import com.google.gwt.i18n.client.constants.NumberConstants;
import com.google.gwt.i18n.client.constants.NumberConstantsImpl;
import com.google.gwt.i18n.client.DateTimeFormatInfo;
import com.google.gwt.i18n.client.impl.cldr.DateTimeFormatInfoImpl;
public class LocaleInfoImpl_ extends LocaleInfoImpl_shared {
@Override
public String getLocaleName() {
return "default";
}
@Override
public String getLocaleQueryParam() {
return "locale";
}
@Override
public DateTimeFormatInfo getDateTimeFormatInfo() {
return GWT.create(com.google.gwt.i18n.client.impl.cldr.DateTimeFormatInfoImpl.class);
}
@Override
public NumberConstants getNumberConstants() {
return GWT.create(com.google.gwt.i18n.client.constants.NumberConstantsImpl.class);
}
}

View File

@ -1,47 +0,0 @@
package com.google.gwt.i18n.client.impl;
import com.google.gwt.core.client.GWT;
import com.google.gwt.core.client.JavaScriptObject;
import java.util.HashMap;
public class LocaleInfoImpl_shared extends com.google.gwt.i18n.client.impl.LocaleInfoImpl {
private static native String getLocaleNativeDisplayName(
JavaScriptObject nativeDisplayNamesNative,String localeName) /*-{
return nativeDisplayNamesNative[localeName];
}-*/;
HashMap<String,String> nativeDisplayNamesJava;
private JavaScriptObject nativeDisplayNamesNative;
@Override
public String[] getAvailableLocaleNames() {
return new String[] {
"default",
};
}
@Override
public String getLocaleNativeDisplayName(String localeName) {
if (GWT.isScript()) {
if (nativeDisplayNamesNative == null) {
nativeDisplayNamesNative = loadNativeDisplayNamesNative();
}
return getLocaleNativeDisplayName(nativeDisplayNamesNative, localeName);
} else {
if (nativeDisplayNamesJava == null) {
nativeDisplayNamesJava = new HashMap<String, String>();
}
return nativeDisplayNamesJava.get(localeName);
}
}
@Override
public boolean hasAnyRTL() {
return false;
}
private native JavaScriptObject loadNativeDisplayNamesNative() /*-{
return {
};
}-*/;
}

View File

@ -1,6 +0,0 @@
package com.google.gwt.lang;
public class org_00046gcube_00046portlet_00046user_00046userstatisticsportlet_00046Statistics__EntryMethodHolder {
public static final void init() {
// to be synthesized later
}
}

View File

@ -1,17 +0,0 @@
package com.google.gwt.user.client;
import com.google.gwt.user.client.DocumentModeAsserter.Severity;
public class DocumentModeAsserter_DocumentModeProperty implements com.google.gwt.user.client.DocumentModeAsserter.DocumentModeProperty {
public String[] getAllowedDocumentModes() {
return new String[] {
"CSS1Compat",
};
}
public Severity getDocumentModeSeverity() {
return Severity.WARN;
}
}

View File

@ -1,110 +0,0 @@
package com.google.gwt.user.client.impl;
import com.google.gwt.core.client.GWT;
import com.google.gwt.resources.client.ResourcePrototype;
public class WindowImplIE_Resources_default_InlineClientBundleGenerator implements com.google.gwt.user.client.impl.WindowImplIE.Resources {
private static WindowImplIE_Resources_default_InlineClientBundleGenerator _instance0 = new WindowImplIE_Resources_default_InlineClientBundleGenerator();
private void initWindowCloseHandlerInitializer() {
initWindowCloseHandler = new com.google.gwt.resources.client.TextResource() {
// jar:file:/home/costantino/.m2/repository/com/google/gwt/gwt-user/2.7.0/gwt-user-2.7.0.jar!/com/google/gwt/user/client/impl/initWindowCloseHandler.js
public String getText() {
return "function __gwt_initWindowCloseHandler(beforeunload, unload) {\n var wnd = window\n , oldOnBeforeUnload = wnd.onbeforeunload\n , oldOnUnload = wnd.onunload;\n \n wnd.onbeforeunload = function(evt) {\n var ret, oldRet;\n try {\n ret = beforeunload();\n } finally {\n oldRet = oldOnBeforeUnload && oldOnBeforeUnload(evt);\n }\n // Avoid returning null as IE6 will coerce it into a string.\n // Ensure that \"\" gets returned properly.\n if (ret != null) {\n return ret;\n }\n if (oldRet != null) {\n return oldRet;\n }\n // returns undefined.\n };\n \n wnd.onunload = function(evt) {\n try {\n unload();\n } finally {\n oldOnUnload && oldOnUnload(evt);\n wnd.onresize = null;\n wnd.onscroll = null;\n wnd.onbeforeunload = null;\n wnd.onunload = null;\n }\n };\n \n // Remove the reference once we've initialize the handler\n wnd.__gwt_initWindowCloseHandler = undefined;\n}\n";
}
public String getName() {
return "initWindowCloseHandler";
}
}
;
}
private static class initWindowCloseHandlerInitializer {
static {
_instance0.initWindowCloseHandlerInitializer();
}
static com.google.gwt.resources.client.TextResource get() {
return initWindowCloseHandler;
}
}
public com.google.gwt.resources.client.TextResource initWindowCloseHandler() {
return initWindowCloseHandlerInitializer.get();
}
private void initWindowResizeHandlerInitializer() {
initWindowResizeHandler = new com.google.gwt.resources.client.TextResource() {
// jar:file:/home/costantino/.m2/repository/com/google/gwt/gwt-user/2.7.0/gwt-user-2.7.0.jar!/com/google/gwt/user/client/impl/initWindowResizeHandler.js
public String getText() {
return "function __gwt_initWindowResizeHandler(resize) {\n var wnd = window, oldOnResize = wnd.onresize;\n \n wnd.onresize = function(evt) {\n try {\n resize();\n } finally {\n oldOnResize && oldOnResize(evt);\n }\n };\n \n // Remove the reference once we've initialize the handler\n wnd.__gwt_initWindowResizeHandler = undefined;\n}\n";
}
public String getName() {
return "initWindowResizeHandler";
}
}
;
}
private static class initWindowResizeHandlerInitializer {
static {
_instance0.initWindowResizeHandlerInitializer();
}
static com.google.gwt.resources.client.TextResource get() {
return initWindowResizeHandler;
}
}
public com.google.gwt.resources.client.TextResource initWindowResizeHandler() {
return initWindowResizeHandlerInitializer.get();
}
private void initWindowScrollHandlerInitializer() {
initWindowScrollHandler = new com.google.gwt.resources.client.TextResource() {
// jar:file:/home/costantino/.m2/repository/com/google/gwt/gwt-user/2.7.0/gwt-user-2.7.0.jar!/com/google/gwt/user/client/impl/initWindowScrollHandler.js
public String getText() {
return "function __gwt_initWindowScrollHandler(scroll) {\n var wnd = window, oldOnScroll = wnd.onscroll;\n \n wnd.onscroll = function(evt) {\n try {\n scroll();\n } finally {\n oldOnScroll && oldOnScroll(evt);\n }\n };\n \n // Remove the reference once we've initialize the handler\n wnd.__gwt_initWindowScrollHandler = undefined;\n}\n";
}
public String getName() {
return "initWindowScrollHandler";
}
}
;
}
private static class initWindowScrollHandlerInitializer {
static {
_instance0.initWindowScrollHandlerInitializer();
}
static com.google.gwt.resources.client.TextResource get() {
return initWindowScrollHandler;
}
}
public com.google.gwt.resources.client.TextResource initWindowScrollHandler() {
return initWindowScrollHandlerInitializer.get();
}
private static java.util.HashMap<java.lang.String, com.google.gwt.resources.client.ResourcePrototype> resourceMap;
private static com.google.gwt.resources.client.TextResource initWindowCloseHandler;
private static com.google.gwt.resources.client.TextResource initWindowResizeHandler;
private static com.google.gwt.resources.client.TextResource initWindowScrollHandler;
public ResourcePrototype[] getResources() {
return new ResourcePrototype[] {
initWindowCloseHandler(),
initWindowResizeHandler(),
initWindowScrollHandler(),
};
}
public ResourcePrototype getResource(String name) {
if (GWT.isScript()) {
return getResourceNative(name);
} else {
if (resourceMap == null) {
resourceMap = new java.util.HashMap<java.lang.String, com.google.gwt.resources.client.ResourcePrototype>();
resourceMap.put("initWindowCloseHandler", initWindowCloseHandler());
resourceMap.put("initWindowResizeHandler", initWindowResizeHandler());
resourceMap.put("initWindowScrollHandler", initWindowScrollHandler());
}
return resourceMap.get(name);
}
}
private native ResourcePrototype getResourceNative(String name) /*-{
switch (name) {
case 'initWindowCloseHandler': return this.@com.google.gwt.user.client.impl.WindowImplIE.Resources::initWindowCloseHandler()();
case 'initWindowResizeHandler': return this.@com.google.gwt.user.client.impl.WindowImplIE.Resources::initWindowResizeHandler()();
case 'initWindowScrollHandler': return this.@com.google.gwt.user.client.impl.WindowImplIE.Resources::initWindowScrollHandler()();
}
return null;
}-*/;
}

View File

@ -1,36 +0,0 @@
package com.google.gwt.user.client.rpc;
import com.google.gwt.user.client.rpc.SerializationException;
import com.google.gwt.user.client.rpc.SerializationStreamReader;
import com.google.gwt.user.client.rpc.SerializationStreamWriter;
import com.google.gwt.user.client.rpc.impl.ReflectionHelper;
@SuppressWarnings("deprecation")
public class IncompatibleRemoteServiceException_FieldSerializer implements com.google.gwt.user.client.rpc.impl.TypeHandler {
public static void deserialize(SerializationStreamReader streamReader, com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException instance) throws SerializationException {
com.google.gwt.user.client.rpc.core.java.lang.RuntimeException_FieldSerializer.deserialize(streamReader, instance);
}
public static com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException instantiate(SerializationStreamReader streamReader) throws SerializationException {
return new com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException();
}
public static void serialize(SerializationStreamWriter streamWriter, com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException instance) throws SerializationException {
com.google.gwt.user.client.rpc.core.java.lang.RuntimeException_FieldSerializer.serialize(streamWriter, instance);
}
public Object create(SerializationStreamReader reader) throws SerializationException {
return com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException_FieldSerializer.instantiate(reader);
}
public void deserial(SerializationStreamReader reader, Object object) throws SerializationException {
com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException_FieldSerializer.deserialize(reader, (com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException)object);
}
public void serial(SerializationStreamWriter writer, Object object) throws SerializationException {
com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException_FieldSerializer.serialize(writer, (com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException)object);
}
}

View File

@ -1,36 +0,0 @@
package com.google.gwt.user.client.rpc;
import com.google.gwt.user.client.rpc.SerializationException;
import com.google.gwt.user.client.rpc.SerializationStreamReader;
import com.google.gwt.user.client.rpc.SerializationStreamWriter;
import com.google.gwt.user.client.rpc.impl.ReflectionHelper;
@SuppressWarnings("deprecation")
public class RpcTokenException_FieldSerializer implements com.google.gwt.user.client.rpc.impl.TypeHandler {
public static void deserialize(SerializationStreamReader streamReader, com.google.gwt.user.client.rpc.RpcTokenException instance) throws SerializationException {
com.google.gwt.user.client.rpc.core.java.lang.RuntimeException_FieldSerializer.deserialize(streamReader, instance);
}
public static com.google.gwt.user.client.rpc.RpcTokenException instantiate(SerializationStreamReader streamReader) throws SerializationException {
return new com.google.gwt.user.client.rpc.RpcTokenException();
}
public static void serialize(SerializationStreamWriter streamWriter, com.google.gwt.user.client.rpc.RpcTokenException instance) throws SerializationException {
com.google.gwt.user.client.rpc.core.java.lang.RuntimeException_FieldSerializer.serialize(streamWriter, instance);
}
public Object create(SerializationStreamReader reader) throws SerializationException {
return com.google.gwt.user.client.rpc.RpcTokenException_FieldSerializer.instantiate(reader);
}
public void deserial(SerializationStreamReader reader, Object object) throws SerializationException {
com.google.gwt.user.client.rpc.RpcTokenException_FieldSerializer.deserialize(reader, (com.google.gwt.user.client.rpc.RpcTokenException)object);
}
public void serial(SerializationStreamWriter writer, Object object) throws SerializationException {
com.google.gwt.user.client.rpc.RpcTokenException_FieldSerializer.serialize(writer, (com.google.gwt.user.client.rpc.RpcTokenException)object);
}
}

View File

@ -1,45 +0,0 @@
package com.google.gwt.user.client.rpc;
import com.google.gwt.user.client.rpc.SerializationException;
import com.google.gwt.user.client.rpc.SerializationStreamReader;
import com.google.gwt.user.client.rpc.SerializationStreamWriter;
import com.google.gwt.user.client.rpc.impl.ReflectionHelper;
@SuppressWarnings("deprecation")
public class XsrfToken_FieldSerializer implements com.google.gwt.user.client.rpc.impl.TypeHandler {
private static native java.lang.String getToken(com.google.gwt.user.client.rpc.XsrfToken instance) /*-{
return instance.@com.google.gwt.user.client.rpc.XsrfToken::token;
}-*/;
private static native void setToken(com.google.gwt.user.client.rpc.XsrfToken instance, java.lang.String value)
/*-{
instance.@com.google.gwt.user.client.rpc.XsrfToken::token = value;
}-*/;
public static void deserialize(SerializationStreamReader streamReader, com.google.gwt.user.client.rpc.XsrfToken instance) throws SerializationException {
setToken(instance, streamReader.readString());
}
public static com.google.gwt.user.client.rpc.XsrfToken instantiate(SerializationStreamReader streamReader) throws SerializationException {
return new com.google.gwt.user.client.rpc.XsrfToken();
}
public static void serialize(SerializationStreamWriter streamWriter, com.google.gwt.user.client.rpc.XsrfToken instance) throws SerializationException {
streamWriter.writeString(getToken(instance));
}
public Object create(SerializationStreamReader reader) throws SerializationException {
return com.google.gwt.user.client.rpc.XsrfToken_FieldSerializer.instantiate(reader);
}
public void deserial(SerializationStreamReader reader, Object object) throws SerializationException {
com.google.gwt.user.client.rpc.XsrfToken_FieldSerializer.deserialize(reader, (com.google.gwt.user.client.rpc.XsrfToken)object);
}
public void serial(SerializationStreamWriter writer, Object object) throws SerializationException {
com.google.gwt.user.client.rpc.XsrfToken_FieldSerializer.serialize(writer, (com.google.gwt.user.client.rpc.XsrfToken)object);
}
}

View File

@ -1,36 +0,0 @@
package com.google.gwt.user.client.rpc.core.java.lang;
import com.google.gwt.user.client.rpc.SerializationException;
import com.google.gwt.user.client.rpc.SerializationStreamReader;
import com.google.gwt.user.client.rpc.SerializationStreamWriter;
import com.google.gwt.user.client.rpc.impl.ReflectionHelper;
@SuppressWarnings("deprecation")
public class Exception_FieldSerializer implements com.google.gwt.user.client.rpc.impl.TypeHandler {
public static void deserialize(SerializationStreamReader streamReader, java.lang.Exception instance) throws SerializationException {
com.google.gwt.user.client.rpc.core.java.lang.Throwable_FieldSerializer.deserialize(streamReader, instance);
}
public static java.lang.Exception instantiate(SerializationStreamReader streamReader) throws SerializationException {
return new java.lang.Exception();
}
public static void serialize(SerializationStreamWriter streamWriter, java.lang.Exception instance) throws SerializationException {
com.google.gwt.user.client.rpc.core.java.lang.Throwable_FieldSerializer.serialize(streamWriter, instance);
}
public Object create(SerializationStreamReader reader) throws SerializationException {
return com.google.gwt.user.client.rpc.core.java.lang.Exception_FieldSerializer.instantiate(reader);
}
public void deserial(SerializationStreamReader reader, Object object) throws SerializationException {
com.google.gwt.user.client.rpc.core.java.lang.Exception_FieldSerializer.deserialize(reader, (java.lang.Exception)object);
}
public void serial(SerializationStreamWriter writer, Object object) throws SerializationException {
com.google.gwt.user.client.rpc.core.java.lang.Exception_FieldSerializer.serialize(writer, (java.lang.Exception)object);
}
}

View File

@ -1,36 +0,0 @@
package com.google.gwt.user.client.rpc.core.java.lang;
import com.google.gwt.user.client.rpc.SerializationException;
import com.google.gwt.user.client.rpc.SerializationStreamReader;
import com.google.gwt.user.client.rpc.SerializationStreamWriter;
import com.google.gwt.user.client.rpc.impl.ReflectionHelper;
@SuppressWarnings("deprecation")
public class RuntimeException_FieldSerializer implements com.google.gwt.user.client.rpc.impl.TypeHandler {
public static void deserialize(SerializationStreamReader streamReader, java.lang.RuntimeException instance) throws SerializationException {
com.google.gwt.user.client.rpc.core.java.lang.Exception_FieldSerializer.deserialize(streamReader, instance);
}
public static java.lang.RuntimeException instantiate(SerializationStreamReader streamReader) throws SerializationException {
return new java.lang.RuntimeException();
}
public static void serialize(SerializationStreamWriter streamWriter, java.lang.RuntimeException instance) throws SerializationException {
com.google.gwt.user.client.rpc.core.java.lang.Exception_FieldSerializer.serialize(streamWriter, instance);
}
public Object create(SerializationStreamReader reader) throws SerializationException {
return com.google.gwt.user.client.rpc.core.java.lang.RuntimeException_FieldSerializer.instantiate(reader);
}
public void deserial(SerializationStreamReader reader, Object object) throws SerializationException {
com.google.gwt.user.client.rpc.core.java.lang.RuntimeException_FieldSerializer.deserialize(reader, (java.lang.RuntimeException)object);
}
public void serial(SerializationStreamWriter writer, Object object) throws SerializationException {
com.google.gwt.user.client.rpc.core.java.lang.RuntimeException_FieldSerializer.serialize(writer, (java.lang.RuntimeException)object);
}
}

View File

@ -1,22 +0,0 @@
package com.google.gwt.user.client.rpc.core.java.lang;
import com.google.gwt.user.client.rpc.SerializationException;
import com.google.gwt.user.client.rpc.SerializationStreamReader;
import com.google.gwt.user.client.rpc.SerializationStreamWriter;
import com.google.gwt.user.client.rpc.impl.ReflectionHelper;
@SuppressWarnings("deprecation")
public class String_FieldSerializer implements com.google.gwt.user.client.rpc.impl.TypeHandler {
public Object create(SerializationStreamReader reader) throws SerializationException {
return com.google.gwt.user.client.rpc.core.java.lang.String_CustomFieldSerializer.instantiate(reader);
}
public void deserial(SerializationStreamReader reader, Object object) throws SerializationException {
com.google.gwt.user.client.rpc.core.java.lang.String_CustomFieldSerializer.deserialize(reader, (java.lang.String)object);
}
public void serial(SerializationStreamWriter writer, Object object) throws SerializationException {
com.google.gwt.user.client.rpc.core.java.lang.String_CustomFieldSerializer.serialize(writer, (java.lang.String)object);
}
}

View File

@ -1,45 +0,0 @@
package com.google.gwt.user.client.rpc.core.java.lang;
import com.google.gwt.user.client.rpc.SerializationException;
import com.google.gwt.user.client.rpc.SerializationStreamReader;
import com.google.gwt.user.client.rpc.SerializationStreamWriter;
import com.google.gwt.user.client.rpc.impl.ReflectionHelper;
@SuppressWarnings("deprecation")
public class Throwable_FieldSerializer implements com.google.gwt.user.client.rpc.impl.TypeHandler {
private static native java.lang.String getDetailMessage(java.lang.Throwable instance) /*-{
return instance.@java.lang.Throwable::detailMessage;
}-*/;
private static native void setDetailMessage(java.lang.Throwable instance, java.lang.String value)
/*-{
instance.@java.lang.Throwable::detailMessage = value;
}-*/;
public static void deserialize(SerializationStreamReader streamReader, java.lang.Throwable instance) throws SerializationException {
setDetailMessage(instance, streamReader.readString());
}
public static java.lang.Throwable instantiate(SerializationStreamReader streamReader) throws SerializationException {
return new java.lang.Throwable();
}
public static void serialize(SerializationStreamWriter streamWriter, java.lang.Throwable instance) throws SerializationException {
streamWriter.writeString(getDetailMessage(instance));
}
public Object create(SerializationStreamReader reader) throws SerializationException {
return com.google.gwt.user.client.rpc.core.java.lang.Throwable_FieldSerializer.instantiate(reader);
}
public void deserial(SerializationStreamReader reader, Object object) throws SerializationException {
com.google.gwt.user.client.rpc.core.java.lang.Throwable_FieldSerializer.deserialize(reader, (java.lang.Throwable)object);
}
public void serial(SerializationStreamWriter writer, Object object) throws SerializationException {
com.google.gwt.user.client.rpc.core.java.lang.Throwable_FieldSerializer.serialize(writer, (java.lang.Throwable)object);
}
}

View File

@ -1,14 +0,0 @@
package com.google.gwt.user.client.ui.impl;
public class ClippedImageImpl_DraggableTemplateImpl implements com.google.gwt.user.client.ui.impl.ClippedImageImpl.DraggableTemplate {
public com.google.gwt.safehtml.shared.SafeHtml image(com.google.gwt.safehtml.shared.SafeUri arg0,com.google.gwt.safecss.shared.SafeStyles arg1) {
StringBuilder sb = new java.lang.StringBuilder();
sb.append("<img onload='this.__gwtLastUnhandledEvent=\"load\";' src='");
sb.append(com.google.gwt.safehtml.shared.SafeHtmlUtils.htmlEscape(arg0.asString()));
sb.append("' style='");
sb.append(com.google.gwt.safehtml.shared.SafeHtmlUtils.htmlEscape(arg1.asString()));
sb.append("' border='0' draggable='true'>");
return new com.google.gwt.safehtml.shared.OnlyToBeUsedInGeneratedCodeStringBlessedAsSafeHtml(sb.toString());
}
}

View File

@ -1,14 +0,0 @@
package com.google.gwt.user.client.ui.impl;
public class ClippedImageImpl_TemplateImpl implements com.google.gwt.user.client.ui.impl.ClippedImageImpl.Template {
public com.google.gwt.safehtml.shared.SafeHtml image(com.google.gwt.safehtml.shared.SafeUri arg0,com.google.gwt.safecss.shared.SafeStyles arg1) {
StringBuilder sb = new java.lang.StringBuilder();
sb.append("<img onload='this.__gwtLastUnhandledEvent=\"load\";' src='");
sb.append(com.google.gwt.safehtml.shared.SafeHtmlUtils.htmlEscape(arg0.asString()));
sb.append("' style='");
sb.append(com.google.gwt.safehtml.shared.SafeHtmlUtils.htmlEscape(arg1.asString()));
sb.append("' border='0'>");
return new com.google.gwt.safehtml.shared.OnlyToBeUsedInGeneratedCodeStringBlessedAsSafeHtml(sb.toString());
}
}

View File

@ -1,30 +0,0 @@
package com.google.gwt.useragent.client;
public class UserAgentImplGecko1_8 implements com.google.gwt.useragent.client.UserAgent {
public native String getRuntimeValue() /*-{
var ua = navigator.userAgent.toLowerCase();
var docMode = $doc.documentMode;
if ((function() {
return (ua.indexOf('webkit') != -1);
})()) return 'safari';
if ((function() {
return (ua.indexOf('msie') != -1 && (docMode >= 10 && docMode < 11));
})()) return 'ie10';
if ((function() {
return (ua.indexOf('msie') != -1 && (docMode >= 9 && docMode < 11));
})()) return 'ie9';
if ((function() {
return (ua.indexOf('msie') != -1 && (docMode >= 8 && docMode < 11));
})()) return 'ie8';
if ((function() {
return (ua.indexOf('gecko') != -1 || docMode >= 11);
})()) return 'gecko1_8';
return 'unknown';
}-*/;
public String getCompileTimeValue() {
return "gecko1_8";
}
}

View File

@ -1,30 +0,0 @@
package com.google.gwt.useragent.client;
public class UserAgentImplIe10 implements com.google.gwt.useragent.client.UserAgent {
public native String getRuntimeValue() /*-{
var ua = navigator.userAgent.toLowerCase();
var docMode = $doc.documentMode;
if ((function() {
return (ua.indexOf('webkit') != -1);
})()) return 'safari';
if ((function() {
return (ua.indexOf('msie') != -1 && (docMode >= 10 && docMode < 11));
})()) return 'ie10';
if ((function() {
return (ua.indexOf('msie') != -1 && (docMode >= 9 && docMode < 11));
})()) return 'ie9';
if ((function() {
return (ua.indexOf('msie') != -1 && (docMode >= 8 && docMode < 11));
})()) return 'ie8';
if ((function() {
return (ua.indexOf('gecko') != -1 || docMode >= 11);
})()) return 'gecko1_8';
return 'unknown';
}-*/;
public String getCompileTimeValue() {
return "ie10";
}
}

View File

@ -1,30 +0,0 @@
package com.google.gwt.useragent.client;
public class UserAgentImplIe8 implements com.google.gwt.useragent.client.UserAgent {
public native String getRuntimeValue() /*-{
var ua = navigator.userAgent.toLowerCase();
var docMode = $doc.documentMode;
if ((function() {
return (ua.indexOf('webkit') != -1);
})()) return 'safari';
if ((function() {
return (ua.indexOf('msie') != -1 && (docMode >= 10 && docMode < 11));
})()) return 'ie10';
if ((function() {
return (ua.indexOf('msie') != -1 && (docMode >= 9 && docMode < 11));
})()) return 'ie9';
if ((function() {
return (ua.indexOf('msie') != -1 && (docMode >= 8 && docMode < 11));
})()) return 'ie8';
if ((function() {
return (ua.indexOf('gecko') != -1 || docMode >= 11);
})()) return 'gecko1_8';
return 'unknown';
}-*/;
public String getCompileTimeValue() {
return "ie8";
}
}

View File

@ -1,30 +0,0 @@
package com.google.gwt.useragent.client;
public class UserAgentImplIe9 implements com.google.gwt.useragent.client.UserAgent {
public native String getRuntimeValue() /*-{
var ua = navigator.userAgent.toLowerCase();
var docMode = $doc.documentMode;
if ((function() {
return (ua.indexOf('webkit') != -1);
})()) return 'safari';
if ((function() {
return (ua.indexOf('msie') != -1 && (docMode >= 10 && docMode < 11));
})()) return 'ie10';
if ((function() {
return (ua.indexOf('msie') != -1 && (docMode >= 9 && docMode < 11));
})()) return 'ie9';
if ((function() {
return (ua.indexOf('msie') != -1 && (docMode >= 8 && docMode < 11));
})()) return 'ie8';
if ((function() {
return (ua.indexOf('gecko') != -1 || docMode >= 11);
})()) return 'gecko1_8';
return 'unknown';
}-*/;
public String getCompileTimeValue() {
return "ie9";
}
}

View File

@ -1,30 +0,0 @@
package com.google.gwt.useragent.client;
public class UserAgentImplSafari implements com.google.gwt.useragent.client.UserAgent {
public native String getRuntimeValue() /*-{
var ua = navigator.userAgent.toLowerCase();
var docMode = $doc.documentMode;
if ((function() {
return (ua.indexOf('webkit') != -1);
})()) return 'safari';
if ((function() {
return (ua.indexOf('msie') != -1 && (docMode >= 10 && docMode < 11));
})()) return 'ie10';
if ((function() {
return (ua.indexOf('msie') != -1 && (docMode >= 9 && docMode < 11));
})()) return 'ie9';
if ((function() {
return (ua.indexOf('msie') != -1 && (docMode >= 8 && docMode < 11));
})()) return 'ie8';
if ((function() {
return (ua.indexOf('gecko') != -1 || docMode >= 11);
})()) return 'gecko1_8';
return 'unknown';
}-*/;
public String getCompileTimeValue() {
return "safari";
}
}

View File

@ -1,80 +0,0 @@
package org.gcube.portlet.user.userstatisticsportlet.client;
import com.google.gwt.user.client.rpc.impl.RemoteServiceProxy;
import com.google.gwt.user.client.rpc.impl.ClientSerializationStreamWriter;
import com.google.gwt.user.client.rpc.SerializationStreamWriter;
import com.google.gwt.core.client.GWT;
import com.google.gwt.user.client.rpc.impl.RequestCallbackAdapter.ResponseReader;
import com.google.gwt.user.client.rpc.SerializationException;
import com.google.gwt.user.client.rpc.RpcToken;
import com.google.gwt.user.client.rpc.RpcTokenException;
import com.google.gwt.core.client.impl.Impl;
import com.google.gwt.user.client.rpc.impl.RpcStatsContext;
public class UserStatisticsService_Proxy extends RemoteServiceProxy implements org.gcube.portlet.user.userstatisticsportlet.client.UserStatisticsServiceAsync {
private static final String REMOTE_SERVICE_INTERFACE_NAME = "org.gcube.portlet.user.userstatisticsportlet.client.UserStatisticsService";
private static final String SERIALIZATION_POLICY ="D1F27E2D652AE1A94EC26DA253E5F4EF";
private static final org.gcube.portlet.user.userstatisticsportlet.client.UserStatisticsService_TypeSerializer SERIALIZER = new org.gcube.portlet.user.userstatisticsportlet.client.UserStatisticsService_TypeSerializer();
public UserStatisticsService_Proxy() {
super(GWT.getModuleBaseURL(),
"statisticservice",
SERIALIZATION_POLICY,
SERIALIZER);
}
public void getPostsStats(com.google.gwt.user.client.rpc.AsyncCallback callback) {
com.google.gwt.user.client.rpc.impl.RemoteServiceProxy.ServiceHelper helper = new com.google.gwt.user.client.rpc.impl.RemoteServiceProxy.ServiceHelper("UserStatisticsService_Proxy", "getPostsStats");
try {
SerializationStreamWriter streamWriter = helper.start(REMOTE_SERVICE_INTERFACE_NAME, 0);
helper.finish(callback, ResponseReader.OBJECT);
} catch (SerializationException ex) {
callback.onFailure(ex);
}
}
public void getProfileStrength(com.google.gwt.user.client.rpc.AsyncCallback callback) {
com.google.gwt.user.client.rpc.impl.RemoteServiceProxy.ServiceHelper helper = new com.google.gwt.user.client.rpc.impl.RemoteServiceProxy.ServiceHelper("UserStatisticsService_Proxy", "getProfileStrength");
try {
SerializationStreamWriter streamWriter = helper.start(REMOTE_SERVICE_INTERFACE_NAME, 0);
helper.finish(callback, ResponseReader.INT);
} catch (SerializationException ex) {
callback.onFailure(ex);
}
}
public void getTotalSpaceInUse(com.google.gwt.user.client.rpc.AsyncCallback callback) {
com.google.gwt.user.client.rpc.impl.RemoteServiceProxy.ServiceHelper helper = new com.google.gwt.user.client.rpc.impl.RemoteServiceProxy.ServiceHelper("UserStatisticsService_Proxy", "getTotalSpaceInUse");
try {
SerializationStreamWriter streamWriter = helper.start(REMOTE_SERVICE_INTERFACE_NAME, 0);
helper.finish(callback, ResponseReader.STRING);
} catch (SerializationException ex) {
callback.onFailure(ex);
}
}
public void getUserSettings(com.google.gwt.user.client.rpc.AsyncCallback callback) {
com.google.gwt.user.client.rpc.impl.RemoteServiceProxy.ServiceHelper helper = new com.google.gwt.user.client.rpc.impl.RemoteServiceProxy.ServiceHelper("UserStatisticsService_Proxy", "getUserSettings");
try {
SerializationStreamWriter streamWriter = helper.start(REMOTE_SERVICE_INTERFACE_NAME, 0);
helper.finish(callback, ResponseReader.OBJECT);
} catch (SerializationException ex) {
callback.onFailure(ex);
}
}
@Override
public SerializationStreamWriter createStreamWriter() {
ClientSerializationStreamWriter toReturn =
(ClientSerializationStreamWriter) super.createStreamWriter();
if (getRpcToken() != null) {
toReturn.addFlags(ClientSerializationStreamWriter.FLAG_RPC_TOKEN_INCLUDED);
}
return toReturn;
}
@Override
protected void checkRpcTokenType(RpcToken token) {
if (!(token instanceof com.google.gwt.user.client.rpc.XsrfToken)) {
throw new RpcTokenException("Invalid RpcToken type: expected 'com.google.gwt.user.client.rpc.XsrfToken' but got '" + token.getClass() + "'");
}
}
}

View File

@ -1,76 +0,0 @@
package org.gcube.portlet.user.userstatisticsportlet.client;
import com.google.gwt.core.client.GWT;
import com.google.gwt.core.client.JsArrayString;
import com.google.gwt.user.client.rpc.impl.TypeHandler;
import java.util.HashMap;
import java.util.Map;
import com.google.gwt.core.client.GwtScriptOnly;
public class UserStatisticsService_TypeSerializer extends com.google.gwt.user.client.rpc.impl.SerializerBase {
private static final MethodMap methodMapNative;
private static final JsArrayString signatureMapNative;
static {
methodMapNative = loadMethodsNative();
signatureMapNative = loadSignaturesNative();
}
@SuppressWarnings("deprecation")
@GwtScriptOnly
private static native MethodMap loadMethodsNative() /*-{
var result = {};
result["com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException/3936916533"] = [
@com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException_FieldSerializer::instantiate(Lcom/google/gwt/user/client/rpc/SerializationStreamReader;),
@com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException_FieldSerializer::deserialize(Lcom/google/gwt/user/client/rpc/SerializationStreamReader;Lcom/google/gwt/user/client/rpc/IncompatibleRemoteServiceException;),
@com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException_FieldSerializer::serialize(Lcom/google/gwt/user/client/rpc/SerializationStreamWriter;Lcom/google/gwt/user/client/rpc/IncompatibleRemoteServiceException;)
];
result["com.google.gwt.user.client.rpc.RpcTokenException/2345075298"] = [
@com.google.gwt.user.client.rpc.RpcTokenException_FieldSerializer::instantiate(Lcom/google/gwt/user/client/rpc/SerializationStreamReader;),
@com.google.gwt.user.client.rpc.RpcTokenException_FieldSerializer::deserialize(Lcom/google/gwt/user/client/rpc/SerializationStreamReader;Lcom/google/gwt/user/client/rpc/RpcTokenException;),
];
result["com.google.gwt.user.client.rpc.XsrfToken/4254043109"] = [
,
,
@com.google.gwt.user.client.rpc.XsrfToken_FieldSerializer::serialize(Lcom/google/gwt/user/client/rpc/SerializationStreamWriter;Lcom/google/gwt/user/client/rpc/XsrfToken;)
];
result["java.lang.String/2004016611"] = [
@com.google.gwt.user.client.rpc.core.java.lang.String_CustomFieldSerializer::instantiate(Lcom/google/gwt/user/client/rpc/SerializationStreamReader;),
@com.google.gwt.user.client.rpc.core.java.lang.String_CustomFieldSerializer::deserialize(Lcom/google/gwt/user/client/rpc/SerializationStreamReader;Ljava/lang/String;),
@com.google.gwt.user.client.rpc.core.java.lang.String_CustomFieldSerializer::serialize(Lcom/google/gwt/user/client/rpc/SerializationStreamWriter;Ljava/lang/String;)
];
result["org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean/454022566"] = [
@org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean_FieldSerializer::instantiate(Lcom/google/gwt/user/client/rpc/SerializationStreamReader;),
@org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean_FieldSerializer::deserialize(Lcom/google/gwt/user/client/rpc/SerializationStreamReader;Lorg/gcube/portlet/user/userstatisticsportlet/shared/PostsStatsBean;),
];
result["org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation/736341965"] = [
@org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation_FieldSerializer::instantiate(Lcom/google/gwt/user/client/rpc/SerializationStreamReader;),
@org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation_FieldSerializer::deserialize(Lcom/google/gwt/user/client/rpc/SerializationStreamReader;Lorg/gcube/portlet/user/userstatisticsportlet/shared/UserInformation;),
];
return result;
}-*/;
@SuppressWarnings("deprecation")
@GwtScriptOnly
private static native JsArrayString loadSignaturesNative() /*-{
var result = [];
result[@com.google.gwt.core.client.impl.Impl::getHashCode(Ljava/lang/Object;)(@com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException::class)] = "com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException/3936916533";
result[@com.google.gwt.core.client.impl.Impl::getHashCode(Ljava/lang/Object;)(@com.google.gwt.user.client.rpc.RpcTokenException::class)] = "com.google.gwt.user.client.rpc.RpcTokenException/2345075298";
result[@com.google.gwt.core.client.impl.Impl::getHashCode(Ljava/lang/Object;)(@com.google.gwt.user.client.rpc.XsrfToken::class)] = "com.google.gwt.user.client.rpc.XsrfToken/4254043109";
result[@com.google.gwt.core.client.impl.Impl::getHashCode(Ljava/lang/Object;)(@java.lang.String::class)] = "java.lang.String/2004016611";
result[@com.google.gwt.core.client.impl.Impl::getHashCode(Ljava/lang/Object;)(@org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean::class)] = "org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean/454022566";
result[@com.google.gwt.core.client.impl.Impl::getHashCode(Ljava/lang/Object;)(@org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation::class)] = "org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation/736341965";
return result;
}-*/;
public UserStatisticsService_TypeSerializer() {
super(null, methodMapNative, null, signatureMapNative);
}
}

View File

@ -1,307 +0,0 @@
// .ui.xml template last modified: 1448472359000
package org.gcube.portlet.user.userstatisticsportlet.client.ui;
import com.google.gwt.core.client.GWT;
import com.google.gwt.dom.client.Element;
import com.google.gwt.safehtml.client.SafeHtmlTemplates;
import com.google.gwt.safehtml.shared.SafeHtml;
import com.google.gwt.safehtml.shared.SafeHtmlUtils;
import com.google.gwt.safehtml.shared.SafeHtmlBuilder;
import com.google.gwt.safehtml.shared.SafeUri;
import com.google.gwt.safehtml.shared.UriUtils;
import com.google.gwt.uibinder.client.UiBinderUtil;
import com.google.gwt.uibinder.client.UiBinder;
import com.google.gwt.uibinder.client.UiBinderUtil;
import com.google.gwt.user.client.ui.Widget;
public class CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl implements UiBinder<com.google.gwt.user.client.ui.Widget, org.gcube.portlet.user.userstatisticsportlet.client.ui.CommentsAndLikesWidget>, org.gcube.portlet.user.userstatisticsportlet.client.ui.CommentsAndLikesWidget.CommentsAndLikesWidgetUiBinder {
interface Template extends SafeHtmlTemplates {
@Template("<span id='{0}'></span> <span id='{1}'></span> <span id='{2}'></span> <span id='{3}'></span>")
SafeHtml html1(String arg0, String arg1, String arg2, String arg3);
}
Template template = GWT.create(Template.class);
public com.google.gwt.user.client.ui.Widget createAndBindUi(final org.gcube.portlet.user.userstatisticsportlet.client.ui.CommentsAndLikesWidget owner) {
return new Widgets(owner).get_f_HTMLPanel1();
}
/**
* Encapsulates the access to all inner widgets
*/
class Widgets {
private final org.gcube.portlet.user.userstatisticsportlet.client.ui.CommentsAndLikesWidget owner;
public Widgets(final org.gcube.portlet.user.userstatisticsportlet.client.ui.CommentsAndLikesWidget owner) {
this.owner = owner;
build_style(); // generated css resource must be always created. Type: GENERATED_CSS. Precedence: 1
build_domId0(); // more than one getter call detected. Type: DOM_ID_HOLDER, precedence: 2
build_domId1(); // more than one getter call detected. Type: DOM_ID_HOLDER, precedence: 2
build_domId2(); // more than one getter call detected. Type: DOM_ID_HOLDER, precedence: 2
build_domId3(); // more than one getter call detected. Type: DOM_ID_HOLDER, precedence: 2
build_domId0Element(); // more than one getter call detected. Type: DEFAULT, precedence: 2
build_domId1Element(); // more than one getter call detected. Type: DEFAULT, precedence: 2
build_domId2Element(); // more than one getter call detected. Type: DEFAULT, precedence: 2
build_domId3Element(); // more than one getter call detected. Type: DEFAULT, precedence: 2
}
SafeHtml template_html1() {
return template.html1(get_domId0(), get_domId1(), get_domId2(), get_domId3());
}
/**
* Getter for clientBundleFieldNameUnlikelyToCollideWithUserSpecifiedFieldOkay called 1 times. Type: GENERATED_BUNDLE. Build precedence: 1.
*/
private org.gcube.portlet.user.userstatisticsportlet.client.ui.CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl_GenBundle get_clientBundleFieldNameUnlikelyToCollideWithUserSpecifiedFieldOkay() {
return build_clientBundleFieldNameUnlikelyToCollideWithUserSpecifiedFieldOkay();
}
private org.gcube.portlet.user.userstatisticsportlet.client.ui.CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl_GenBundle build_clientBundleFieldNameUnlikelyToCollideWithUserSpecifiedFieldOkay() {
// Creation section.
final org.gcube.portlet.user.userstatisticsportlet.client.ui.CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl_GenBundle clientBundleFieldNameUnlikelyToCollideWithUserSpecifiedFieldOkay = (org.gcube.portlet.user.userstatisticsportlet.client.ui.CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl_GenBundle) GWT.create(org.gcube.portlet.user.userstatisticsportlet.client.ui.CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl_GenBundle.class);
// Setup section.
return clientBundleFieldNameUnlikelyToCollideWithUserSpecifiedFieldOkay;
}
/**
* Getter for style called 4 times. Type: GENERATED_CSS. Build precedence: 1.
*/
private org.gcube.portlet.user.userstatisticsportlet.client.ui.CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl_GenCss_style style;
private org.gcube.portlet.user.userstatisticsportlet.client.ui.CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl_GenCss_style get_style() {
return style;
}
private org.gcube.portlet.user.userstatisticsportlet.client.ui.CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl_GenCss_style build_style() {
// Creation section.
style = get_clientBundleFieldNameUnlikelyToCollideWithUserSpecifiedFieldOkay().style();
// Setup section.
style.ensureInjected();
return style;
}
/**
* Getter for f_HTMLPanel1 called 1 times. Type: DEFAULT. Build precedence: 1.
*/
private com.google.gwt.user.client.ui.HTMLPanel get_f_HTMLPanel1() {
return build_f_HTMLPanel1();
}
private com.google.gwt.user.client.ui.HTMLPanel build_f_HTMLPanel1() {
// Creation section.
final com.google.gwt.user.client.ui.HTMLPanel f_HTMLPanel1 = new com.google.gwt.user.client.ui.HTMLPanel(template_html1().asString());
// Setup section.
{
// Attach section.
UiBinderUtil.TempAttachment __attachRecord__ = UiBinderUtil.attachToDom(f_HTMLPanel1.getElement());
get_domId0Element().get();
get_domId1Element().get();
get_domId2Element().get();
get_domId3Element().get();
// Detach section.
__attachRecord__.detach();
}
f_HTMLPanel1.addAndReplaceElement(get_likesImage(), get_domId0Element().get());
f_HTMLPanel1.addAndReplaceElement(get_likesValue(), get_domId1Element().get());
f_HTMLPanel1.addAndReplaceElement(get_commentsImage(), get_domId2Element().get());
f_HTMLPanel1.addAndReplaceElement(get_commentsValue(), get_domId3Element().get());
return f_HTMLPanel1;
}
/**
* Getter for domId0 called 2 times. Type: DOM_ID_HOLDER. Build precedence: 2.
*/
private java.lang.String domId0;
private java.lang.String get_domId0() {
return domId0;
}
private java.lang.String build_domId0() {
// Creation section.
domId0 = com.google.gwt.dom.client.Document.get().createUniqueId();
// Setup section.
return domId0;
}
/**
* Getter for likesImage called 1 times. Type: DEFAULT. Build precedence: 2.
*/
private com.google.gwt.user.client.ui.Image get_likesImage() {
return build_likesImage();
}
private com.google.gwt.user.client.ui.Image build_likesImage() {
// Creation section.
final com.google.gwt.user.client.ui.Image likesImage = (com.google.gwt.user.client.ui.Image) GWT.create(com.google.gwt.user.client.ui.Image.class);
// Setup section.
likesImage.setStyleName("" + get_style().statisticIcon() + "");
this.owner.likesImage = likesImage;
return likesImage;
}
/**
* Getter for domId0Element called 2 times. Type: DEFAULT. Build precedence: 2.
*/
private com.google.gwt.uibinder.client.LazyDomElement domId0Element;
private com.google.gwt.uibinder.client.LazyDomElement get_domId0Element() {
return domId0Element;
}
private com.google.gwt.uibinder.client.LazyDomElement build_domId0Element() {
// Creation section.
domId0Element = new com.google.gwt.uibinder.client.LazyDomElement<Element>(get_domId0());
// Setup section.
return domId0Element;
}
/**
* Getter for domId1 called 2 times. Type: DOM_ID_HOLDER. Build precedence: 2.
*/
private java.lang.String domId1;
private java.lang.String get_domId1() {
return domId1;
}
private java.lang.String build_domId1() {
// Creation section.
domId1 = com.google.gwt.dom.client.Document.get().createUniqueId();
// Setup section.
return domId1;
}
/**
* Getter for likesValue called 1 times. Type: DEFAULT. Build precedence: 2.
*/
private com.google.gwt.user.client.ui.Label get_likesValue() {
return build_likesValue();
}
private com.google.gwt.user.client.ui.Label build_likesValue() {
// Creation section.
final com.google.gwt.user.client.ui.Label likesValue = (com.google.gwt.user.client.ui.Label) GWT.create(com.google.gwt.user.client.ui.Label.class);
// Setup section.
likesValue.setStyleName("" + get_style().statisticValue() + "");
this.owner.likesValue = likesValue;
return likesValue;
}
/**
* Getter for domId1Element called 2 times. Type: DEFAULT. Build precedence: 2.
*/
private com.google.gwt.uibinder.client.LazyDomElement domId1Element;
private com.google.gwt.uibinder.client.LazyDomElement get_domId1Element() {
return domId1Element;
}
private com.google.gwt.uibinder.client.LazyDomElement build_domId1Element() {
// Creation section.
domId1Element = new com.google.gwt.uibinder.client.LazyDomElement<Element>(get_domId1());
// Setup section.
return domId1Element;
}
/**
* Getter for domId2 called 2 times. Type: DOM_ID_HOLDER. Build precedence: 2.
*/
private java.lang.String domId2;
private java.lang.String get_domId2() {
return domId2;
}
private java.lang.String build_domId2() {
// Creation section.
domId2 = com.google.gwt.dom.client.Document.get().createUniqueId();
// Setup section.
return domId2;
}
/**
* Getter for commentsImage called 1 times. Type: DEFAULT. Build precedence: 2.
*/
private com.google.gwt.user.client.ui.Image get_commentsImage() {
return build_commentsImage();
}
private com.google.gwt.user.client.ui.Image build_commentsImage() {
// Creation section.
final com.google.gwt.user.client.ui.Image commentsImage = (com.google.gwt.user.client.ui.Image) GWT.create(com.google.gwt.user.client.ui.Image.class);
// Setup section.
commentsImage.setStyleName("" + get_style().statisticIcon() + "");
this.owner.commentsImage = commentsImage;
return commentsImage;
}
/**
* Getter for domId2Element called 2 times. Type: DEFAULT. Build precedence: 2.
*/
private com.google.gwt.uibinder.client.LazyDomElement domId2Element;
private com.google.gwt.uibinder.client.LazyDomElement get_domId2Element() {
return domId2Element;
}
private com.google.gwt.uibinder.client.LazyDomElement build_domId2Element() {
// Creation section.
domId2Element = new com.google.gwt.uibinder.client.LazyDomElement<Element>(get_domId2());
// Setup section.
return domId2Element;
}
/**
* Getter for domId3 called 2 times. Type: DOM_ID_HOLDER. Build precedence: 2.
*/
private java.lang.String domId3;
private java.lang.String get_domId3() {
return domId3;
}
private java.lang.String build_domId3() {
// Creation section.
domId3 = com.google.gwt.dom.client.Document.get().createUniqueId();
// Setup section.
return domId3;
}
/**
* Getter for commentsValue called 1 times. Type: DEFAULT. Build precedence: 2.
*/
private com.google.gwt.user.client.ui.Label get_commentsValue() {
return build_commentsValue();
}
private com.google.gwt.user.client.ui.Label build_commentsValue() {
// Creation section.
final com.google.gwt.user.client.ui.Label commentsValue = (com.google.gwt.user.client.ui.Label) GWT.create(com.google.gwt.user.client.ui.Label.class);
// Setup section.
commentsValue.setStyleName("" + get_style().statisticValue() + "");
this.owner.commentsValue = commentsValue;
return commentsValue;
}
/**
* Getter for domId3Element called 2 times. Type: DEFAULT. Build precedence: 2.
*/
private com.google.gwt.uibinder.client.LazyDomElement domId3Element;
private com.google.gwt.uibinder.client.LazyDomElement get_domId3Element() {
return domId3Element;
}
private com.google.gwt.uibinder.client.LazyDomElement build_domId3Element() {
// Creation section.
domId3Element = new com.google.gwt.uibinder.client.LazyDomElement<Element>(get_domId3());
// Setup section.
return domId3Element;
}
}
}

View File

@ -1,15 +0,0 @@
package org.gcube.portlet.user.userstatisticsportlet.client.ui;
import com.google.gwt.resources.client.ClientBundle;
import com.google.gwt.resources.client.DataResource;
import com.google.gwt.resources.client.DataResource.DoNotEmbed;
import com.google.gwt.resources.client.DataResource.MimeType;
import com.google.gwt.resources.client.ImageResource;
import com.google.gwt.resources.client.ImageResource.ImageOptions;
import com.google.gwt.resources.client.CssResource.Import;
public interface CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl_GenBundle extends ClientBundle {
@Source("uibinder.org.gcube.portlet.user.userstatisticsportlet.client.ui.CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl_GenCss_style.css")
CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl_GenCss_style style();
}

View File

@ -1,70 +0,0 @@
package org.gcube.portlet.user.userstatisticsportlet.client.ui;
import com.google.gwt.core.client.GWT;
import com.google.gwt.resources.client.ResourcePrototype;
public class CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl_GenBundle_default_InlineClientBundleGenerator implements org.gcube.portlet.user.userstatisticsportlet.client.ui.CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl_GenBundle {
private static CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl_GenBundle_default_InlineClientBundleGenerator _instance0 = new CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl_GenBundle_default_InlineClientBundleGenerator();
private void styleInitializer() {
style = new org.gcube.portlet.user.userstatisticsportlet.client.ui.CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl_GenCss_style() {
private boolean injected;
public boolean ensureInjected() {
if (!injected) {
injected = true;
com.google.gwt.dom.client.StyleInjector.inject(getText());
return true;
}
return false;
}
public String getName() {
return "style";
}
public String getText() {
return (".GBE-UDYCEI{display:" + ("inline-block") + ";vertical-align:" + ("bottom") + ";}.GBE-UDYCFI{color:" + ("#0084b4") + " !important;font-size:" + ("13px") + ";display:" + ("inline-block") + ";vertical-align:" + ("bottom") + ";}");
}
public java.lang.String statisticIcon() {
return "GBE-UDYCEI";
}
public java.lang.String statisticValue() {
return "GBE-UDYCFI";
}
}
;
}
private static class styleInitializer {
static {
_instance0.styleInitializer();
}
static org.gcube.portlet.user.userstatisticsportlet.client.ui.CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl_GenCss_style get() {
return style;
}
}
public org.gcube.portlet.user.userstatisticsportlet.client.ui.CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl_GenCss_style style() {
return styleInitializer.get();
}
private static java.util.HashMap<java.lang.String, com.google.gwt.resources.client.ResourcePrototype> resourceMap;
private static org.gcube.portlet.user.userstatisticsportlet.client.ui.CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl_GenCss_style style;
public ResourcePrototype[] getResources() {
return new ResourcePrototype[] {
style(),
};
}
public ResourcePrototype getResource(String name) {
if (GWT.isScript()) {
return getResourceNative(name);
} else {
if (resourceMap == null) {
resourceMap = new java.util.HashMap<java.lang.String, com.google.gwt.resources.client.ResourcePrototype>();
resourceMap.put("style", style());
}
return resourceMap.get(name);
}
}
private native ResourcePrototype getResourceNative(String name) /*-{
switch (name) {
case 'style': return this.@org.gcube.portlet.user.userstatisticsportlet.client.ui.CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl_GenBundle::style()();
}
return null;
}-*/;
}

View File

@ -1,10 +0,0 @@
package org.gcube.portlet.user.userstatisticsportlet.client.ui;
import com.google.gwt.resources.client.CssResource;
public interface CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl_GenCss_style extends CssResource {
@ClassName("statistic-value")
String statisticValue();
@ClassName("statistic-icon")
String statisticIcon();
}

View File

@ -1,18 +0,0 @@
package org.gcube.portlet.user.userstatisticsportlet.client.ui;
public class CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl_TemplateImpl implements org.gcube.portlet.user.userstatisticsportlet.client.ui.CommentsAndLikesWidget_CommentsAndLikesWidgetUiBinderImpl.Template {
public com.google.gwt.safehtml.shared.SafeHtml html1(java.lang.String arg0,java.lang.String arg1,java.lang.String arg2,java.lang.String arg3) {
StringBuilder sb = new java.lang.StringBuilder();
sb.append("<span id='");
sb.append(com.google.gwt.safehtml.shared.SafeHtmlUtils.htmlEscape(arg0));
sb.append("'></span> <span id='");
sb.append(com.google.gwt.safehtml.shared.SafeHtmlUtils.htmlEscape(arg1));
sb.append("'></span> <span id='");
sb.append(com.google.gwt.safehtml.shared.SafeHtmlUtils.htmlEscape(arg2));
sb.append("'></span> <span id='");
sb.append(com.google.gwt.safehtml.shared.SafeHtmlUtils.htmlEscape(arg3));
sb.append("'></span>");
return new com.google.gwt.safehtml.shared.OnlyToBeUsedInGeneratedCodeStringBlessedAsSafeHtml(sb.toString());
}
}

View File

@ -1,205 +0,0 @@
// .ui.xml template last modified: 1449140426000
package org.gcube.portlet.user.userstatisticsportlet.client.ui;
import com.google.gwt.core.client.GWT;
import com.google.gwt.dom.client.Element;
import com.google.gwt.safehtml.client.SafeHtmlTemplates;
import com.google.gwt.safehtml.shared.SafeHtml;
import com.google.gwt.safehtml.shared.SafeHtmlUtils;
import com.google.gwt.safehtml.shared.SafeHtmlBuilder;
import com.google.gwt.safehtml.shared.SafeUri;
import com.google.gwt.safehtml.shared.UriUtils;
import com.google.gwt.uibinder.client.UiBinderUtil;
import com.google.gwt.uibinder.client.UiBinder;
import com.google.gwt.uibinder.client.UiBinderUtil;
import com.google.gwt.user.client.ui.Widget;
public class StatisticWidget_StatisticWidgetUiBinderImpl implements UiBinder<com.google.gwt.user.client.ui.Widget, org.gcube.portlet.user.userstatisticsportlet.client.ui.StatisticWidget>, org.gcube.portlet.user.userstatisticsportlet.client.ui.StatisticWidget.StatisticWidgetUiBinder {
interface Template extends SafeHtmlTemplates {
@Template("<span id='{0}'></span> <span id='{1}'></span>")
SafeHtml html1(String arg0, String arg1);
}
Template template = GWT.create(Template.class);
public com.google.gwt.user.client.ui.Widget createAndBindUi(final org.gcube.portlet.user.userstatisticsportlet.client.ui.StatisticWidget owner) {
return new Widgets(owner).get_f_HTMLPanel1();
}
/**
* Encapsulates the access to all inner widgets
*/
class Widgets {
private final org.gcube.portlet.user.userstatisticsportlet.client.ui.StatisticWidget owner;
public Widgets(final org.gcube.portlet.user.userstatisticsportlet.client.ui.StatisticWidget owner) {
this.owner = owner;
build_style(); // generated css resource must be always created. Type: GENERATED_CSS. Precedence: 1
build_domId0(); // more than one getter call detected. Type: DOM_ID_HOLDER, precedence: 2
build_domId1(); // more than one getter call detected. Type: DOM_ID_HOLDER, precedence: 2
build_domId0Element(); // more than one getter call detected. Type: DEFAULT, precedence: 2
build_domId1Element(); // more than one getter call detected. Type: DEFAULT, precedence: 2
}
SafeHtml template_html1() {
return template.html1(get_domId0(), get_domId1());
}
/**
* Getter for clientBundleFieldNameUnlikelyToCollideWithUserSpecifiedFieldOkay called 1 times. Type: GENERATED_BUNDLE. Build precedence: 1.
*/
private org.gcube.portlet.user.userstatisticsportlet.client.ui.StatisticWidget_StatisticWidgetUiBinderImpl_GenBundle get_clientBundleFieldNameUnlikelyToCollideWithUserSpecifiedFieldOkay() {
return build_clientBundleFieldNameUnlikelyToCollideWithUserSpecifiedFieldOkay();
}
private org.gcube.portlet.user.userstatisticsportlet.client.ui.StatisticWidget_StatisticWidgetUiBinderImpl_GenBundle build_clientBundleFieldNameUnlikelyToCollideWithUserSpecifiedFieldOkay() {
// Creation section.
final org.gcube.portlet.user.userstatisticsportlet.client.ui.StatisticWidget_StatisticWidgetUiBinderImpl_GenBundle clientBundleFieldNameUnlikelyToCollideWithUserSpecifiedFieldOkay = (org.gcube.portlet.user.userstatisticsportlet.client.ui.StatisticWidget_StatisticWidgetUiBinderImpl_GenBundle) GWT.create(org.gcube.portlet.user.userstatisticsportlet.client.ui.StatisticWidget_StatisticWidgetUiBinderImpl_GenBundle.class);
// Setup section.
return clientBundleFieldNameUnlikelyToCollideWithUserSpecifiedFieldOkay;
}
/**
* Getter for style called 2 times. Type: GENERATED_CSS. Build precedence: 1.
*/
private org.gcube.portlet.user.userstatisticsportlet.client.ui.StatisticWidget_StatisticWidgetUiBinderImpl_GenCss_style style;
private org.gcube.portlet.user.userstatisticsportlet.client.ui.StatisticWidget_StatisticWidgetUiBinderImpl_GenCss_style get_style() {
return style;
}
private org.gcube.portlet.user.userstatisticsportlet.client.ui.StatisticWidget_StatisticWidgetUiBinderImpl_GenCss_style build_style() {
// Creation section.
style = get_clientBundleFieldNameUnlikelyToCollideWithUserSpecifiedFieldOkay().style();
// Setup section.
style.ensureInjected();
return style;
}
/**
* Getter for f_HTMLPanel1 called 1 times. Type: DEFAULT. Build precedence: 1.
*/
private com.google.gwt.user.client.ui.HTMLPanel get_f_HTMLPanel1() {
return build_f_HTMLPanel1();
}
private com.google.gwt.user.client.ui.HTMLPanel build_f_HTMLPanel1() {
// Creation section.
final com.google.gwt.user.client.ui.HTMLPanel f_HTMLPanel1 = new com.google.gwt.user.client.ui.HTMLPanel(template_html1().asString());
// Setup section.
f_HTMLPanel1.setStyleName("" + get_style().statisticContainer() + "");
{
// Attach section.
UiBinderUtil.TempAttachment __attachRecord__ = UiBinderUtil.attachToDom(f_HTMLPanel1.getElement());
get_domId0Element().get();
get_domId1Element().get();
// Detach section.
__attachRecord__.detach();
}
f_HTMLPanel1.addAndReplaceElement(get_header(), get_domId0Element().get());
f_HTMLPanel1.addAndReplaceElement(get_containerValues(), get_domId1Element().get());
return f_HTMLPanel1;
}
/**
* Getter for domId0 called 2 times. Type: DOM_ID_HOLDER. Build precedence: 2.
*/
private java.lang.String domId0;
private java.lang.String get_domId0() {
return domId0;
}
private java.lang.String build_domId0() {
// Creation section.
domId0 = com.google.gwt.dom.client.Document.get().createUniqueId();
// Setup section.
return domId0;
}
/**
* Getter for header called 1 times. Type: DEFAULT. Build precedence: 2.
*/
private com.google.gwt.user.client.ui.Label get_header() {
return build_header();
}
private com.google.gwt.user.client.ui.Label build_header() {
// Creation section.
final com.google.gwt.user.client.ui.Label header = (com.google.gwt.user.client.ui.Label) GWT.create(com.google.gwt.user.client.ui.Label.class);
// Setup section.
header.setStyleName("" + get_style().statisticHeader() + "");
this.owner.header = header;
return header;
}
/**
* Getter for domId0Element called 2 times. Type: DEFAULT. Build precedence: 2.
*/
private com.google.gwt.uibinder.client.LazyDomElement domId0Element;
private com.google.gwt.uibinder.client.LazyDomElement get_domId0Element() {
return domId0Element;
}
private com.google.gwt.uibinder.client.LazyDomElement build_domId0Element() {
// Creation section.
domId0Element = new com.google.gwt.uibinder.client.LazyDomElement<Element>(get_domId0());
// Setup section.
return domId0Element;
}
/**
* Getter for domId1 called 2 times. Type: DOM_ID_HOLDER. Build precedence: 2.
*/
private java.lang.String domId1;
private java.lang.String get_domId1() {
return domId1;
}
private java.lang.String build_domId1() {
// Creation section.
domId1 = com.google.gwt.dom.client.Document.get().createUniqueId();
// Setup section.
return domId1;
}
/**
* Getter for containerValues called 1 times. Type: DEFAULT. Build precedence: 2.
*/
private com.google.gwt.user.client.ui.FlowPanel get_containerValues() {
return build_containerValues();
}
private com.google.gwt.user.client.ui.FlowPanel build_containerValues() {
// Creation section.
final com.google.gwt.user.client.ui.FlowPanel containerValues = (com.google.gwt.user.client.ui.FlowPanel) GWT.create(com.google.gwt.user.client.ui.FlowPanel.class);
// Setup section.
this.owner.containerValues = containerValues;
return containerValues;
}
/**
* Getter for domId1Element called 2 times. Type: DEFAULT. Build precedence: 2.
*/
private com.google.gwt.uibinder.client.LazyDomElement domId1Element;
private com.google.gwt.uibinder.client.LazyDomElement get_domId1Element() {
return domId1Element;
}
private com.google.gwt.uibinder.client.LazyDomElement build_domId1Element() {
// Creation section.
domId1Element = new com.google.gwt.uibinder.client.LazyDomElement<Element>(get_domId1());
// Setup section.
return domId1Element;
}
}
}

View File

@ -1,15 +0,0 @@
package org.gcube.portlet.user.userstatisticsportlet.client.ui;
import com.google.gwt.resources.client.ClientBundle;
import com.google.gwt.resources.client.DataResource;
import com.google.gwt.resources.client.DataResource.DoNotEmbed;
import com.google.gwt.resources.client.DataResource.MimeType;
import com.google.gwt.resources.client.ImageResource;
import com.google.gwt.resources.client.ImageResource.ImageOptions;
import com.google.gwt.resources.client.CssResource.Import;
public interface StatisticWidget_StatisticWidgetUiBinderImpl_GenBundle extends ClientBundle {
@Source("uibinder.org.gcube.portlet.user.userstatisticsportlet.client.ui.StatisticWidget_StatisticWidgetUiBinderImpl_GenCss_style.css")
StatisticWidget_StatisticWidgetUiBinderImpl_GenCss_style style();
}

View File

@ -1,70 +0,0 @@
package org.gcube.portlet.user.userstatisticsportlet.client.ui;
import com.google.gwt.core.client.GWT;
import com.google.gwt.resources.client.ResourcePrototype;
public class StatisticWidget_StatisticWidgetUiBinderImpl_GenBundle_default_InlineClientBundleGenerator implements org.gcube.portlet.user.userstatisticsportlet.client.ui.StatisticWidget_StatisticWidgetUiBinderImpl_GenBundle {
private static StatisticWidget_StatisticWidgetUiBinderImpl_GenBundle_default_InlineClientBundleGenerator _instance0 = new StatisticWidget_StatisticWidgetUiBinderImpl_GenBundle_default_InlineClientBundleGenerator();
private void styleInitializer() {
style = new org.gcube.portlet.user.userstatisticsportlet.client.ui.StatisticWidget_StatisticWidgetUiBinderImpl_GenCss_style() {
private boolean injected;
public boolean ensureInjected() {
if (!injected) {
injected = true;
com.google.gwt.dom.client.StyleInjector.inject(getText());
return true;
}
return false;
}
public String getName() {
return "style";
}
public String getText() {
return com.google.gwt.i18n.client.LocaleInfo.getCurrentLocale().isRTL() ? ((".GBE-UDYCGI{margin-left:" + ("10px") + ";display:" + ("inline-block") + ";vertical-align:" + ("top") + ";}.GBE-UDYCHI{font-family:" + ("\"Lucida Grande\""+ ","+ " " +"Verdana"+ ","+ " " +"\"Bitstream Vera Sans\""+ ","+ " " +"Arial"+ ","+ " " +"sans-serif") + ";font-size:" + ("12px") + ";color:" + ("#8899a6") + ";letter-spacing:" + ("0.02em") + ";overflow:" + ("hidden") + ";text-transform:" + ("uppercase") + ";margin-top:" + ("15px") + ";margin-bottom:") + (("2px") + ";text-align:" + ("center") + ";vertical-align:" + ("text-top") + ";}")) : ((".GBE-UDYCGI{margin-right:" + ("10px") + ";display:" + ("inline-block") + ";vertical-align:" + ("top") + ";}.GBE-UDYCHI{font-family:" + ("\"Lucida Grande\""+ ","+ " " +"Verdana"+ ","+ " " +"\"Bitstream Vera Sans\""+ ","+ " " +"Arial"+ ","+ " " +"sans-serif") + ";font-size:" + ("12px") + ";color:" + ("#8899a6") + ";letter-spacing:" + ("0.02em") + ";overflow:" + ("hidden") + ";text-transform:" + ("uppercase") + ";margin-top:" + ("15px") + ";margin-bottom:") + (("2px") + ";text-align:" + ("center") + ";vertical-align:" + ("text-top") + ";}"));
}
public java.lang.String statisticContainer() {
return "GBE-UDYCGI";
}
public java.lang.String statisticHeader() {
return "GBE-UDYCHI";
}
}
;
}
private static class styleInitializer {
static {
_instance0.styleInitializer();
}
static org.gcube.portlet.user.userstatisticsportlet.client.ui.StatisticWidget_StatisticWidgetUiBinderImpl_GenCss_style get() {
return style;
}
}
public org.gcube.portlet.user.userstatisticsportlet.client.ui.StatisticWidget_StatisticWidgetUiBinderImpl_GenCss_style style() {
return styleInitializer.get();
}
private static java.util.HashMap<java.lang.String, com.google.gwt.resources.client.ResourcePrototype> resourceMap;
private static org.gcube.portlet.user.userstatisticsportlet.client.ui.StatisticWidget_StatisticWidgetUiBinderImpl_GenCss_style style;
public ResourcePrototype[] getResources() {
return new ResourcePrototype[] {
style(),
};
}
public ResourcePrototype getResource(String name) {
if (GWT.isScript()) {
return getResourceNative(name);
} else {
if (resourceMap == null) {
resourceMap = new java.util.HashMap<java.lang.String, com.google.gwt.resources.client.ResourcePrototype>();
resourceMap.put("style", style());
}
return resourceMap.get(name);
}
}
private native ResourcePrototype getResourceNative(String name) /*-{
switch (name) {
case 'style': return this.@org.gcube.portlet.user.userstatisticsportlet.client.ui.StatisticWidget_StatisticWidgetUiBinderImpl_GenBundle::style()();
}
return null;
}-*/;
}

View File

@ -1,10 +0,0 @@
package org.gcube.portlet.user.userstatisticsportlet.client.ui;
import com.google.gwt.resources.client.CssResource;
public interface StatisticWidget_StatisticWidgetUiBinderImpl_GenCss_style extends CssResource {
@ClassName("statistic-header")
String statisticHeader();
@ClassName("statistic-container")
String statisticContainer();
}

View File

@ -1,14 +0,0 @@
package org.gcube.portlet.user.userstatisticsportlet.client.ui;
public class StatisticWidget_StatisticWidgetUiBinderImpl_TemplateImpl implements org.gcube.portlet.user.userstatisticsportlet.client.ui.StatisticWidget_StatisticWidgetUiBinderImpl.Template {
public com.google.gwt.safehtml.shared.SafeHtml html1(java.lang.String arg0,java.lang.String arg1) {
StringBuilder sb = new java.lang.StringBuilder();
sb.append("<span id='");
sb.append(com.google.gwt.safehtml.shared.SafeHtmlUtils.htmlEscape(arg0));
sb.append("'></span> <span id='");
sb.append(com.google.gwt.safehtml.shared.SafeHtmlUtils.htmlEscape(arg1));
sb.append("'></span>");
return new com.google.gwt.safehtml.shared.OnlyToBeUsedInGeneratedCodeStringBlessedAsSafeHtml(sb.toString());
}
}

View File

@ -1,73 +0,0 @@
package org.gcube.portlet.user.userstatisticsportlet.shared;
import com.google.gwt.user.client.rpc.SerializationException;
import com.google.gwt.user.client.rpc.SerializationStreamReader;
import com.google.gwt.user.client.rpc.SerializationStreamWriter;
import com.google.gwt.user.client.rpc.impl.ReflectionHelper;
@SuppressWarnings("deprecation")
public class PostsStatsBean_FieldSerializer implements com.google.gwt.user.client.rpc.impl.TypeHandler {
@com.google.gwt.core.client.UnsafeNativeLong
private static native long getCommentsReceived(org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean instance) /*-{
return instance.@org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean::commentsReceived;
}-*/;
@com.google.gwt.core.client.UnsafeNativeLong
private static native void setCommentsReceived(org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean instance, long value)
/*-{
instance.@org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean::commentsReceived = value;
}-*/;
@com.google.gwt.core.client.UnsafeNativeLong
private static native long getFeeds(org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean instance) /*-{
return instance.@org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean::feeds;
}-*/;
@com.google.gwt.core.client.UnsafeNativeLong
private static native void setFeeds(org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean instance, long value)
/*-{
instance.@org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean::feeds = value;
}-*/;
@com.google.gwt.core.client.UnsafeNativeLong
private static native long getLikesReceived(org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean instance) /*-{
return instance.@org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean::likesReceived;
}-*/;
@com.google.gwt.core.client.UnsafeNativeLong
private static native void setLikesReceived(org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean instance, long value)
/*-{
instance.@org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean::likesReceived = value;
}-*/;
public static void deserialize(SerializationStreamReader streamReader, org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean instance) throws SerializationException {
setCommentsReceived(instance, streamReader.readLong());
setFeeds(instance, streamReader.readLong());
setLikesReceived(instance, streamReader.readLong());
}
public static org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean instantiate(SerializationStreamReader streamReader) throws SerializationException {
return new org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean();
}
public static void serialize(SerializationStreamWriter streamWriter, org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean instance) throws SerializationException {
streamWriter.writeLong(getCommentsReceived(instance));
streamWriter.writeLong(getFeeds(instance));
streamWriter.writeLong(getLikesReceived(instance));
}
public Object create(SerializationStreamReader reader) throws SerializationException {
return org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean_FieldSerializer.instantiate(reader);
}
public void deserial(SerializationStreamReader reader, Object object) throws SerializationException {
org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean_FieldSerializer.deserialize(reader, (org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean)object);
}
public void serial(SerializationStreamWriter writer, Object object) throws SerializationException {
org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean_FieldSerializer.serialize(writer, (org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean)object);
}
}

View File

@ -1,89 +0,0 @@
package org.gcube.portlet.user.userstatisticsportlet.shared;
import com.google.gwt.user.client.rpc.SerializationException;
import com.google.gwt.user.client.rpc.SerializationStreamReader;
import com.google.gwt.user.client.rpc.SerializationStreamWriter;
import com.google.gwt.user.client.rpc.impl.ReflectionHelper;
@SuppressWarnings("deprecation")
public class UserInformation_FieldSerializer implements com.google.gwt.user.client.rpc.impl.TypeHandler {
private static native java.lang.String getAccountURL(org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation instance) /*-{
return instance.@org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation::accountURL;
}-*/;
private static native void setAccountURL(org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation instance, java.lang.String value)
/*-{
instance.@org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation::accountURL = value;
}-*/;
private static native java.lang.String getActualVre(org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation instance) /*-{
return instance.@org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation::actualVre;
}-*/;
private static native void setActualVre(org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation instance, java.lang.String value)
/*-{
instance.@org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation::actualVre = value;
}-*/;
private static native java.lang.String getDisplayName(org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation instance) /*-{
return instance.@org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation::displayName;
}-*/;
private static native void setDisplayName(org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation instance, java.lang.String value)
/*-{
instance.@org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation::displayName = value;
}-*/;
private static native boolean getIsRoot(org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation instance) /*-{
return instance.@org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation::isRoot;
}-*/;
private static native void setIsRoot(org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation instance, boolean value)
/*-{
instance.@org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation::isRoot = value;
}-*/;
private static native java.lang.String getUrlAvatar(org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation instance) /*-{
return instance.@org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation::urlAvatar;
}-*/;
private static native void setUrlAvatar(org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation instance, java.lang.String value)
/*-{
instance.@org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation::urlAvatar = value;
}-*/;
public static void deserialize(SerializationStreamReader streamReader, org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation instance) throws SerializationException {
setAccountURL(instance, streamReader.readString());
setActualVre(instance, streamReader.readString());
setDisplayName(instance, streamReader.readString());
setIsRoot(instance, streamReader.readBoolean());
setUrlAvatar(instance, streamReader.readString());
}
public static org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation instantiate(SerializationStreamReader streamReader) throws SerializationException {
return new org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation();
}
public static void serialize(SerializationStreamWriter streamWriter, org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation instance) throws SerializationException {
streamWriter.writeString(getAccountURL(instance));
streamWriter.writeString(getActualVre(instance));
streamWriter.writeString(getDisplayName(instance));
streamWriter.writeBoolean(getIsRoot(instance));
streamWriter.writeString(getUrlAvatar(instance));
}
public Object create(SerializationStreamReader reader) throws SerializationException {
return org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation_FieldSerializer.instantiate(reader);
}
public void deserial(SerializationStreamReader reader, Object object) throws SerializationException {
org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation_FieldSerializer.deserialize(reader, (org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation)object);
}
public void serial(SerializationStreamWriter writer, Object object) throws SerializationException {
org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation_FieldSerializer.serialize(writer, (org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation)object);
}
}

View File

@ -1,52 +0,0 @@
package org.gcube.portlets.user.gcubewidgets.client.rpc;
import com.google.gwt.user.client.rpc.impl.RemoteServiceProxy;
import com.google.gwt.user.client.rpc.impl.ClientSerializationStreamWriter;
import com.google.gwt.user.client.rpc.SerializationStreamWriter;
import com.google.gwt.core.client.GWT;
import com.google.gwt.user.client.rpc.impl.RequestCallbackAdapter.ResponseReader;
import com.google.gwt.user.client.rpc.SerializationException;
import com.google.gwt.user.client.rpc.RpcToken;
import com.google.gwt.user.client.rpc.RpcTokenException;
import com.google.gwt.core.client.impl.Impl;
import com.google.gwt.user.client.rpc.impl.RpcStatsContext;
public class ScopeService_Proxy extends RemoteServiceProxy implements org.gcube.portlets.user.gcubewidgets.client.rpc.ScopeServiceAsync {
private static final String REMOTE_SERVICE_INTERFACE_NAME = "org.gcube.portlets.user.gcubewidgets.client.rpc.ScopeService";
private static final String SERIALIZATION_POLICY ="61CF2EB1942C991A9518A75D35EC17FD";
private static final org.gcube.portlets.user.gcubewidgets.client.rpc.ScopeService_TypeSerializer SERIALIZER = new org.gcube.portlets.user.gcubewidgets.client.rpc.ScopeService_TypeSerializer();
public ScopeService_Proxy() {
super(GWT.getModuleBaseURL(),
"scopeService",
SERIALIZATION_POLICY,
SERIALIZER);
}
public void setScope(java.lang.String portalURL, com.google.gwt.user.client.rpc.AsyncCallback callback) {
com.google.gwt.user.client.rpc.impl.RemoteServiceProxy.ServiceHelper helper = new com.google.gwt.user.client.rpc.impl.RemoteServiceProxy.ServiceHelper("ScopeService_Proxy", "setScope");
try {
SerializationStreamWriter streamWriter = helper.start(REMOTE_SERVICE_INTERFACE_NAME, 1);
streamWriter.writeString("java.lang.String/2004016611");
streamWriter.writeString(portalURL);
helper.finish(callback, ResponseReader.BOOLEAN);
} catch (SerializationException ex) {
callback.onFailure(ex);
}
}
@Override
public SerializationStreamWriter createStreamWriter() {
ClientSerializationStreamWriter toReturn =
(ClientSerializationStreamWriter) super.createStreamWriter();
if (getRpcToken() != null) {
toReturn.addFlags(ClientSerializationStreamWriter.FLAG_RPC_TOKEN_INCLUDED);
}
return toReturn;
}
@Override
protected void checkRpcTokenType(RpcToken token) {
if (!(token instanceof com.google.gwt.user.client.rpc.XsrfToken)) {
throw new RpcTokenException("Invalid RpcToken type: expected 'com.google.gwt.user.client.rpc.XsrfToken' but got '" + token.getClass() + "'");
}
}
}

View File

@ -1,64 +0,0 @@
package org.gcube.portlets.user.gcubewidgets.client.rpc;
import com.google.gwt.core.client.GWT;
import com.google.gwt.core.client.JsArrayString;
import com.google.gwt.user.client.rpc.impl.TypeHandler;
import java.util.HashMap;
import java.util.Map;
import com.google.gwt.core.client.GwtScriptOnly;
public class ScopeService_TypeSerializer extends com.google.gwt.user.client.rpc.impl.SerializerBase {
private static final MethodMap methodMapNative;
private static final JsArrayString signatureMapNative;
static {
methodMapNative = loadMethodsNative();
signatureMapNative = loadSignaturesNative();
}
@SuppressWarnings("deprecation")
@GwtScriptOnly
private static native MethodMap loadMethodsNative() /*-{
var result = {};
result["com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException/3936916533"] = [
@com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException_FieldSerializer::instantiate(Lcom/google/gwt/user/client/rpc/SerializationStreamReader;),
@com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException_FieldSerializer::deserialize(Lcom/google/gwt/user/client/rpc/SerializationStreamReader;Lcom/google/gwt/user/client/rpc/IncompatibleRemoteServiceException;),
@com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException_FieldSerializer::serialize(Lcom/google/gwt/user/client/rpc/SerializationStreamWriter;Lcom/google/gwt/user/client/rpc/IncompatibleRemoteServiceException;)
];
result["com.google.gwt.user.client.rpc.RpcTokenException/2345075298"] = [
@com.google.gwt.user.client.rpc.RpcTokenException_FieldSerializer::instantiate(Lcom/google/gwt/user/client/rpc/SerializationStreamReader;),
@com.google.gwt.user.client.rpc.RpcTokenException_FieldSerializer::deserialize(Lcom/google/gwt/user/client/rpc/SerializationStreamReader;Lcom/google/gwt/user/client/rpc/RpcTokenException;),
];
result["com.google.gwt.user.client.rpc.XsrfToken/4254043109"] = [
,
,
@com.google.gwt.user.client.rpc.XsrfToken_FieldSerializer::serialize(Lcom/google/gwt/user/client/rpc/SerializationStreamWriter;Lcom/google/gwt/user/client/rpc/XsrfToken;)
];
result["java.lang.String/2004016611"] = [
@com.google.gwt.user.client.rpc.core.java.lang.String_CustomFieldSerializer::instantiate(Lcom/google/gwt/user/client/rpc/SerializationStreamReader;),
@com.google.gwt.user.client.rpc.core.java.lang.String_CustomFieldSerializer::deserialize(Lcom/google/gwt/user/client/rpc/SerializationStreamReader;Ljava/lang/String;),
@com.google.gwt.user.client.rpc.core.java.lang.String_CustomFieldSerializer::serialize(Lcom/google/gwt/user/client/rpc/SerializationStreamWriter;Ljava/lang/String;)
];
return result;
}-*/;
@SuppressWarnings("deprecation")
@GwtScriptOnly
private static native JsArrayString loadSignaturesNative() /*-{
var result = [];
result[@com.google.gwt.core.client.impl.Impl::getHashCode(Ljava/lang/Object;)(@com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException::class)] = "com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException/3936916533";
result[@com.google.gwt.core.client.impl.Impl::getHashCode(Ljava/lang/Object;)(@com.google.gwt.user.client.rpc.RpcTokenException::class)] = "com.google.gwt.user.client.rpc.RpcTokenException/2345075298";
result[@com.google.gwt.core.client.impl.Impl::getHashCode(Ljava/lang/Object;)(@com.google.gwt.user.client.rpc.XsrfToken::class)] = "com.google.gwt.user.client.rpc.XsrfToken/4254043109";
result[@com.google.gwt.core.client.impl.Impl::getHashCode(Ljava/lang/Object;)(@java.lang.String::class)] = "java.lang.String/2004016611";
return result;
}-*/;
public ScopeService_TypeSerializer() {
super(null, methodMapNative, null, signatureMapNative);
}
}

View File

@ -1,5 +0,0 @@
Manifest-Version: 1.0
Built-By: costantino
Build-Jdk: 1.7.0_80
Created-By: Maven Integration for Eclipse

View File

@ -1,7 +0,0 @@
#Generated by Maven Integration for Eclipse
#Wed Dec 09 14:27:43 CET 2015
version=0.0.1-SNAPSHOT
groupId=org.gcube.portlets.user
m2e.projectName=user-statistics
m2e.projectLocation=/home/costantino/workspace/user-statistics
artifactId=user-statistics-portlet

View File

@ -1,199 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>maven-parent</artifactId>
<groupId>org.gcube.tools</groupId>
<version>1.0.0</version>
<relativePath />
</parent>
<groupId>org.gcube.portlets.user</groupId>
<artifactId>user-statistics-portlet</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>User statistics portlet</name>
<description>
User statistics portlet shows main user's statistics.
</description>
<scm>
<connection>scm:svn:http://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/${project.artifactId}</connection>
<developerConnection>scm:https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/${project.artifactId}</developerConnection>
<url>http://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/${project.artifactId}</url>
</scm>
<properties>
<!-- Convenience property to set the GWT version -->
<gwtVersion>2.7.0</gwtVersion>
<!-- GWT needs at least java 1.6 -->
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt</artifactId>
<version>${gwtVersion}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.gcube.distribution</groupId>
<artifactId>maven-portal-bom</artifactId>
<version>LATEST</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-servlet</artifactId>
<scope>provided</scope>
<version>2.7.0</version>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<scope>provided</scope>
<version>2.7.0</version>
</dependency>
<dependency>
<groupId>org.gcube.portlets.user</groupId>
<artifactId>gcube-widgets</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.liferay.portal</groupId>
<artifactId>portal-service</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.gcube.portal</groupId>
<artifactId>custom-portal-handler</artifactId>
</dependency>
<dependency>
<groupId>org.gcube.applicationsupportlayer</groupId>
<artifactId>aslcore</artifactId>
</dependency>
<dependency>
<groupId>org.gcube.dvos</groupId>
<artifactId>usermanagement-core</artifactId>
</dependency>
<dependency>
<groupId>com.google</groupId>
<artifactId>gwt-jsonmaker</artifactId>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.gcube.core</groupId>
<artifactId>common-scope-maps</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>javax.portlet</groupId>
<artifactId>portlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.gcube.portal</groupId>
<artifactId>social-networking-library</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.gcube.common</groupId>
<artifactId>home-library</artifactId>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>asm-all</artifactId>
<groupId>asm</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.gcube.common</groupId>
<artifactId>home-library-jcr</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<!-- Output classes directly into the webapp, so that IDEs and "mvn process-classes"
update them in DevMode -->
<outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>
<plugins>
<!-- GWT Maven Plugin -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwtVersion}</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<!-- <goal>test</goal> -->
<!-- <goal>generateAsync</goal> -->
</goals>
</execution>
</executions>
<!-- Plugin configuration. There are many available options, see gwt-maven-plugin
documentation at codehaus.org -->
<configuration>
<runTarget>Statistics.html</runTarget>
<hostedWebapp>${webappDirectory}</hostedWebapp>
</configuration>
</plugin>
<!-- Copy static web files before executing gwt:run -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>exploded</goal>
</goals>
</execution>
</executions>
<configuration>
<webappDirectory>${webappDirectory}</webappDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<!-- SA Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
</plugin>
</plugins>
</build>
</project>

View File

@ -1,5 +0,0 @@
#Generated by Maven
#Wed Dec 09 14:29:00 CET 2015
version=0.0.1-SNAPSHOT
groupId=org.gcube.portlets.user
artifactId=user-statistics-portlet

View File

@ -1,64 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<testsuite failures="0" time="0.162" errors="0" skipped="0" tests="1" name="org.gcube.portlet.user.userstatisticsportlet.client.TestForDeploy">
<properties>
<property name="java.runtime.name" value="OpenJDK Runtime Environment"/>
<property name="sun.boot.library.path" value="/usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64"/>
<property name="java.vm.version" value="24.91-b01"/>
<property name="java.vm.vendor" value="Oracle Corporation"/>
<property name="java.vendor.url" value="http://java.oracle.com/"/>
<property name="path.separator" value=":"/>
<property name="guice.disable.misplaced.annotation.check" value="true"/>
<property name="java.vm.name" value="OpenJDK 64-Bit Server VM"/>
<property name="file.encoding.pkg" value="sun.io"/>
<property name="user.country" value="US"/>
<property name="sun.java.launcher" value="SUN_STANDARD"/>
<property name="sun.os.patch.level" value="unknown"/>
<property name="java.vm.specification.name" value="Java Virtual Machine Specification"/>
<property name="user.dir" value="/home/costantino/workspace/user-statistics"/>
<property name="java.runtime.version" value="1.7.0_91-b02"/>
<property name="java.awt.graphicsenv" value="sun.awt.X11GraphicsEnvironment"/>
<property name="java.endorsed.dirs" value="/usr/lib/jvm/java-7-openjdk-amd64/jre/lib/endorsed"/>
<property name="os.arch" value="amd64"/>
<property name="java.io.tmpdir" value="/tmp"/>
<property name="line.separator" value="
"/>
<property name="java.vm.specification.vendor" value="Oracle Corporation"/>
<property name="os.name" value="Linux"/>
<property name="classworlds.conf" value="/home/costantino/workspace/.metadata/.plugins/org.eclipse.m2e.launching/launches/m2conf1579909949294793760.tmp"/>
<property name="sun.jnu.encoding" value="UTF-8"/>
<property name="java.library.path" value="/usr/java/packages/lib/amd64:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib"/>
<property name="java.specification.name" value="Java Platform API Specification"/>
<property name="java.class.version" value="51.0"/>
<property name="sun.management.compiler" value="HotSpot 64-Bit Tiered Compilers"/>
<property name="os.version" value="3.13.0-68-generic"/>
<property name="user.home" value="/home/costantino"/>
<property name="user.timezone" value="Europe/Rome"/>
<property name="java.awt.printerjob" value="sun.print.PSPrinterJob"/>
<property name="file.encoding" value="UTF-8"/>
<property name="java.specification.version" value="1.7"/>
<property name="user.name" value="costantino"/>
<property name="java.class.path" value="/opt/eclipse/plugins/org.eclipse.m2e.maven.runtime_1.5.1.20150109-1819/jars/plexus-classworlds-2.5.1.jar"/>
<property name="org.slf4j.simpleLogger.defaultLogLevel" value="info"/>
<property name="java.vm.specification.version" value="1.7"/>
<property name="sun.arch.data.model" value="64"/>
<property name="java.home" value="/usr/lib/jvm/java-7-openjdk-amd64/jre"/>
<property name="sun.java.command" value="org.codehaus.plexus.classworlds.launcher.Launcher -B package"/>
<property name="java.specification.vendor" value="Oracle Corporation"/>
<property name="user.language" value="en"/>
<property name="awt.toolkit" value="sun.awt.X11.XToolkit"/>
<property name="java.vm.info" value="mixed mode"/>
<property name="java.version" value="1.7.0_91"/>
<property name="java.ext.dirs" value="/usr/lib/jvm/java-7-openjdk-amd64/jre/lib/ext:/usr/java/packages/lib/ext"/>
<property name="securerandom.source" value="file:/dev/./urandom"/>
<property name="sun.boot.class.path" value="/usr/lib/jvm/java-7-openjdk-amd64/jre/lib/resources.jar:/usr/lib/jvm/java-7-openjdk-amd64/jre/lib/rt.jar:/usr/lib/jvm/java-7-openjdk-amd64/jre/lib/sunrsasign.jar:/usr/lib/jvm/java-7-openjdk-amd64/jre/lib/jsse.jar:/usr/lib/jvm/java-7-openjdk-amd64/jre/lib/jce.jar:/usr/lib/jvm/java-7-openjdk-amd64/jre/lib/charsets.jar:/usr/lib/jvm/java-7-openjdk-amd64/jre/lib/rhino.jar:/usr/lib/jvm/java-7-openjdk-amd64/jre/lib/jfr.jar:/usr/lib/jvm/java-7-openjdk-amd64/jre/classes"/>
<property name="java.vendor" value="Oracle Corporation"/>
<property name="maven.home" value="/home/costantino/workspace/user-statistics/EMBEDDED"/>
<property name="file.separator" value="/"/>
<property name="java.vendor.url.bug" value="http://bugreport.sun.com/bugreport/"/>
<property name="sun.cpu.endian" value="little"/>
<property name="sun.io.unicode.encoding" value="UnicodeLittle"/>
<property name="sun.desktop" value="gnome"/>
<property name="sun.cpu.isalist" value=""/>
</properties>
<testcase time="0.162" classname="org.gcube.portlet.user.userstatisticsportlet.client.TestForDeploy" name="testUserIsTestUser"/>
</testsuite>

View File

@ -1,4 +0,0 @@
-------------------------------------------------------------------------------
Test set: org.gcube.portlet.user.userstatisticsportlet.client.TestForDeploy
-------------------------------------------------------------------------------
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.223 sec

View File

@ -1,9 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<module rename-to="Statistics">
<!-- Inherit our applications main module. -->
<inherits name='org.gcube.portlet.user.userstatisticsportlet.Statistics' />
<!-- Specify the path to any remote services. -->
<servlet path="/Statistics/greet" class="org.gcube.portlet.user.userstatisticsportlet.server.GreetingServiceImpl" />
</module>

View File

@ -1,5 +0,0 @@
Manifest-Version: 1.0
Built-By: costantino
Build-Jdk: 1.7.0_80
Created-By: Maven Integration for Eclipse

View File

@ -1,7 +0,0 @@
#Generated by Maven Integration for Eclipse
#Fri Nov 13 16:46:36 CET 2015
version=0.0.1-SNAPSHOT
groupId=org.gcube.portlets.user
m2e.projectName=user-statistics-portlet
m2e.projectLocation=/home/costantino/workspace/user-statistics-portlet
artifactId=user-statistics-portlet

View File

@ -1,182 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>maven-parent</artifactId>
<groupId>org.gcube.tools</groupId>
<version>1.0.0</version>
<relativePath />
</parent>
<groupId>org.gcube.portlets.user</groupId>
<artifactId>user-statistics-portlet</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>User statistics portlet</name>
<description>
User statistics portlet shows manin user's statistics.
</description>
<scm>
<connection>scm:svn:http://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/${project.artifactId}</connection>
<developerConnection>scm:https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/${project.artifactId}</developerConnection>
<url>http://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/${project.artifactId}</url>
</scm>
<properties>
<!-- Convenience property to set the GWT version -->
<gwtVersion>2.7.0</gwtVersion>
<!-- GWT needs at least java 1.6 -->
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt</artifactId>
<version>${gwtVersion}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.gcube.distribution</groupId>
<artifactId>maven-portal-bom</artifactId>
<version>LATEST</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-servlet</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.gcube.portlets.user</groupId>
<artifactId>gcube-widgets</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.gcube.portal</groupId>
<artifactId>custom-portal-handler</artifactId>
</dependency>
<dependency>
<groupId>org.gcube.applicationsupportlayer</groupId>
<artifactId>aslcore</artifactId>
</dependency>
<dependency>
<groupId>org.gcube.dvos</groupId>
<artifactId>usermanagement-core</artifactId>
</dependency>
<dependency>
<groupId>com.google</groupId>
<artifactId>gwt-jsonmaker</artifactId>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.gcube.core</groupId>
<artifactId>common-scope-maps</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>javax.portlet</groupId>
<artifactId>portlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.gcube.portal</groupId>
<artifactId>social-networking-library</artifactId>
</dependency>
<dependency>
<groupId>com.netflix.astyanax</groupId>
<artifactId>astyanax</artifactId>
</dependency>
</dependencies>
<build>
<!-- Output classes directly into the webapp, so that IDEs and "mvn process-classes"
update them in DevMode -->
<outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory>
<plugins>
<!-- GWT Maven Plugin -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwtVersion}</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<!-- <goal>test</goal> -->
<!-- <goal>generateAsync</goal> -->
</goals>
</execution>
</executions>
<!-- Plugin configuration. There are many available options, see gwt-maven-plugin
documentation at codehaus.org -->
<configuration>
<runTarget>Statistics.html</runTarget>
<hostedWebapp>${webappDirectory}</hostedWebapp>
<modules>
<module>org.gcube.portlet.user.userstatisticsportlet.Statistics</module>
</modules>
</configuration>
</plugin>
<!-- Copy static web files before executing gwt:run -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>exploded</goal>
</goals>
</execution>
</executions>
<configuration>
<webappDirectory>${webappDirectory}</webappDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<!-- SA Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
</plugin>
</plugins>
</build>
</project>

View File

@ -1,80 +0,0 @@
.user-stats-frame {
padding: 10px;
background-color: #FFF;
}
.user-stats-frame-border {
border-radius: 6px !important;
-moz-border-radius: 6px !important;
-webkit-border-radius: 6px !important;
border: 1px solid #DBDBDB;
}
.user-image {
align: left;
height: 73px;
width: auto;
border: 1px solid #e6e6e6;
padding: 2px;
color: #FFF;
margin-right: 12px;
display: inline-block;
vertical-align: top;
}
.user-image-editable:hover {
cursor: pointer;
}
.error-msg {
font-family: "Architects Daughter", arial, sans-serif;
}
.user-stats-title {
display: block;
font-size: 16px;
color: #555;
margin-bottom: 10px;
}
.statistic-value {
color: #0084B4 !important;
font-size: 15px;
text-align: center;
vertical-align: bottom;
}
.statistic-value-inline {
color: #0084B4 !important;
font-size: 15px;
text-align: center;
vertical-align: bottom;
display: inline-block;
}
.loading-image-center {
display: block;
margin: auto auto;
}
.loading-image-center-small {
width: 20px;
height: auto;
display: block;
margin: auto auto;
}
.alert-icon-center{
display: block;
margin: auto auto;
}
.button-improve-profile {
margin: 0 0 0 25px;
font-family: Tahoma, Helvetica, Arial, sans-serif;
line-height: 12px;
font-size: 12px;
color: #fff;
padding: 5px 15px;
font-weight: normal;
}

View File

@ -1,53 +0,0 @@
<!doctype html>
<!-- The DOCTYPE declaration above will set the -->
<!-- browser's rendering engine into -->
<!-- "Standards Mode". Replacing this declaration -->
<!-- with a "Quirks Mode" doctype may lead to some -->
<!-- differences in layout. -->
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!-- -->
<!-- Consider inlining CSS to reduce the number of requested files -->
<!-- -->
<link type="text/css" rel="stylesheet" href="Statistics.css">
<link href='https://fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' type='text/css'>
<!-- -->
<!-- Any title is fine -->
<!-- -->
<title>User statistics</title>
<!-- -->
<!-- This script loads your compiled module. -->
<!-- If you add any GWT meta tags, they must -->
<!-- be added before this line. -->
<!-- -->
<script type="text/javascript" language="javascript"
src="statistics/statistics.nocache.js"></script>
</head>
<!-- -->
<!-- The body can have arbitrary html, or -->
<!-- you can leave the body empty if you want -->
<!-- to create a completely dynamic UI. -->
<!-- -->
<body>
<!-- OPTIONAL: include this if you want history support -->
<iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1'
style="position: absolute; width: 0; height: 0; border: 0"></iframe>
<!-- RECOMMENDED if your web app will not function without JavaScript enabled -->
<noscript>
<div
style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif">
Your web browser must have JavaScript enabled in order for this
application to display correctly.</div>
</noscript>
<div id="statistics-container"></div>
</body>
</html>

View File

@ -1,4 +0,0 @@
# Module statistics
# RPC service class, partial path of RPC policy file
org.gcube.portlet.user.userstatisticsportlet.client.UserStatisticsService, D1F27E2D652AE1A94EC26DA253E5F4EF.gwt.rpc
org.gcube.portlets.user.gcubewidgets.client.rpc.ScopeService, 61CF2EB1942C991A9518A75D35EC17FD.gwt.rpc

View File

@ -1,2 +0,0 @@
serviceClass: org.gcube.portlet.user.userstatisticsportlet.client.UserStatisticsService
path: D1F27E2D652AE1A94EC26DA253E5F4EF.gwt.rpc

View File

@ -1,2 +0,0 @@
serviceClass: org.gcube.portlets.user.gcubewidgets.client.rpc.ScopeService
path: 61CF2EB1942C991A9518A75D35EC17FD.gwt.rpc

Some files were not shown because too many files have changed in this diff Show More