Skip to content

Instantly share code, notes, and snippets.

View porcelli's full-sized avatar

Alex Porcelli porcelli

View GitHub Profile
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ uberfire-widgets-core-client ---
[DEBUG] org.apache.maven.plugins:maven-compiler-plugin:jar:2.3.2:
[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile
[DEBUG] org.apache.maven:maven-artifact:jar:2.0.6:compile
[DEBUG] org.apache.maven:maven-core:jar:2.0.6:compile
[DEBUG] org.apache.maven:maven-settings:jar:2.0.6:compile
[DEBUG] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile
[DEBUG] org.apache.maven:maven-profile:jar:2.0.6:compile
[DEBUG] org.apache.maven:maven-model:jar:2.0.6:compile
[DEBUG] org.apache.maven:maven-repository-metadata:jar:2.0.6:compile
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>UberFire Showcase</title>
<link rel="stylesheet" href="css/uberfire-loading.css">
<link rel="stylesheet" href="css/uberfire-showcase.css">
<link rel="stylesheet" href="css/ruleflow.css">
</head>
{
"name": "Markdown Editor",
"root": {
"parts": [
{
"place": "MarkdownLiveViewer",
"parameters": [
]
}
$registerPerspective({
"id": "Markdown Editor",
"view": {
"parts": [
{
"place": "MarkdownLiveViewer",
"parameters": {}
}
],
"panels": [
/*
* Copyright 2012 JBoss Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
final IOCBeanManager beanManager = IOC.getBeanManager();
final ActivityBeansCache activityBeansCache = beanManager.lookupBean( ActivityBeansCache.class ).getInstance();
final JSNativePlugin newNativePlugin = beanManager.lookupBean( JSNativePlugin.class ).getInstance();
newNativePlugin.build( obj );
final JSWorkbenchScreenActivity activity = new JSWorkbenchScreenActivity( newNativePlugin, beanManager.lookupBean( PlaceManager.class ).getInstance() );
beanManager.addBean( (Class) Activity.class, JSWorkbenchScreenActivity.class, null, activity, DEFAULT_QUALIFIERS, newNativePlugin.getId(), true );
beanManager.addBean( (Class) WorkbenchScreenActivity.class, JSWorkbenchScreenActivity.class, null, activity, DEFAULT_QUALIFIERS, newNativePlugin.getId(), true );
$ echo 'public class Hello { public static void main(String... args) { System.out.println("Hello?"); } }' > Hello.java
$ javac Hello.java
$ java Hello
Loading module: org.uberfire.UberfireShowcase
Top URL: http://127.0.0.1:8888/org.uberfire.UberfireShowcase/Uberfire.html?gwt.codesvr=127.0.0.1:9997
User agent: FF
Remote host: localhost:58337
Tab key: 0x1143b7800
Session key: j~iEmU%d%((*-=Ps
DEBUG: Validating units:
INFO: Ignored 23 units with compilation errors in first pass.
Compile with -strict or with -logLevel set to TRACE or DEBUG to see all errors.
DEBUG: Rebinding org.jboss.errai.marshalling.client.api.MarshallerFactory
package org.uberfire.rpc.impl;
import org.jboss.errai.common.client.protocols.SerializationParts;
import org.jboss.errai.marshalling.client.api.MarshallingSession;
import org.jboss.errai.marshalling.client.api.annotations.ClientMarshaller;
import org.jboss.errai.marshalling.client.api.annotations.ServerMarshaller;
import org.jboss.errai.marshalling.client.api.json.EJValue;
import org.jboss.errai.marshalling.client.marshallers.AbstractNullableMarshaller;
import org.uberfire.rpc.SessionInfo;
import org.uberfire.security.impl.IdentityImpl;
package org.uberfire.backend.vfs;
import org.uberfire.mvp.Command;
import org.uberfire.mvp.ParameterizedCommand;
import org.uberfire.rpc.SessionInfo;
public interface ObservablePath extends Path {
void onRename( final Command command );