[JBoss JIRA] Updated: (JBIDE-8054) Text selection in VPE source pane is not synchronized with selection in Visual Pane
by Vlado Pakan (JIRA)
[ https://issues.jboss.org/browse/JBIDE-8054?page=com.atlassian.jira.plugin... ]
Vlado Pakan updated JBIDE-8054:
-------------------------------
Attachment: selectionError.swf
> Text selection in VPE source pane is not synchronized with selection in Visual Pane
> -----------------------------------------------------------------------------------
>
> Key: JBIDE-8054
> URL: https://issues.jboss.org/browse/JBIDE-8054
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: Visual Page Editor core
> Affects Versions: 3.2.0.CR1
> Environment: Linux 32bit JBDS 4.0.0.v201012161657N-H584-CR1
> Reporter: Vlado Pakan
> Assignee: Maxim Areshkau
> Attachments: selectionError.swf
>
>
> Steps to reproduce:
> 1. Open any jsp page in VPE editor and select some text in VPE source pane. The same text is selected in visual pane.
> 2. Make mouse left click somewhere in visual pane. There should be no selected text.
> 3. Select the same text in step 1. via source pane
> 4. No text is selected in visual pane but the same text selected in source pane has to be selected in visual pane.
> After reopening jsp page it's working again as mentioned above. Selection is synchronized only first time.
> See attached screencast.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 11 months
[JBoss JIRA] Updated: (JBIDE-8042) BPEL validator does not recognize counter variable inside forEach.
by Marek Baluch (JIRA)
[ https://issues.jboss.org/browse/JBIDE-8042?page=com.atlassian.jira.plugin... ]
Marek Baluch updated JBIDE-8042:
--------------------------------
Attachment: Screen.png
> BPEL validator does not recognize counter variable inside forEach.
> ------------------------------------------------------------------
>
> Key: JBIDE-8042
> URL: https://issues.jboss.org/browse/JBIDE-8042
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: bpel
> Affects Versions: 3.2.0.Beta2, 3.2.0.CR1
> Reporter: Marek Baluch
> Attachments: Screen.png
>
>
> The declared counter variable in the following code snippet is marked by the validator red (see attached image).
> CODE
> ...
> <bpel:variable name="number" type="xsd:int"/>
> ...
> <bpel:forEach parallel="no" counterName="counter" name="ForEach">
> <bpel:startCounterValue><![CDATA[1]]></bpel:startCounterValue>
> <bpel:finalCounterValue><![CDATA[10]]></bpel:finalCounterValue>
> <bpel:scope name="Scope">
> <bpel:assign validate="no" name="Assign">
> <bpel:copy>
> <bpel:from variable="counter"/>
> <bpel:to variable="number"/>
> </bpel:copy>
> </bpel:assign>
> </bpel:scope>
> </bpel:forEach>
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 11 months
[JBoss JIRA] Created: (JBIDE-7905) Unable to expand Hibernate Console after JPA entity is added in JPA project
by Jiri Peterka (JIRA)
Unable to expand Hibernate Console after JPA entity is added in JPA project
---------------------------------------------------------------------------
Key: JBIDE-7905
URL: https://issues.jboss.org/browse/JBIDE-7905
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: Hibernate
Affects Versions: 3.2.0.Beta2
Environment: JBDS 4.0.0.beta2 H33, Linux 64
Reporter: Jiri Peterka
Steps:
1. Create jpa 2.0 project (target runtime jboss-eap 5.1, hibernate platform, hsql connection, discover classes automatically)
2. Add JPA entity
3. Open hibernate console
org.hibernate.console.HibernateConsoleRuntimeException: Could not create JPA based Configuration
at org.hibernate.console.ConfigurationFactory.buildJPAConfiguration(ConfigurationFactory.java:242)
at org.hibernate.console.ConfigurationFactory.buildConfiguration(ConfigurationFactory.java:172)
at org.hibernate.console.ConfigurationFactory.createConfiguration(ConfigurationFactory.java:94)
at org.hibernate.console.ConsoleConfiguration$3.execute(ConsoleConfiguration.java:209)
at org.hibernate.console.execution.DefaultExecutionContext.execute(DefaultExecutionContext.java:63)
at org.hibernate.console.ConsoleConfiguration.execute(ConsoleConfiguration.java:71)
at org.hibernate.console.ConsoleConfiguration.buildWith(ConsoleConfiguration.java:206)
at org.hibernate.console.ConsoleConfiguration.build(ConsoleConfiguration.java:162)
at org.hibernate.eclipse.console.workbench.ConsoleConfigurationWorkbenchAdapter.getChildren(ConsoleConfigurationWorkbenchAdapter.java:40)
at org.hibernate.eclipse.console.workbench.BasicWorkbenchAdapter.getChildren(BasicWorkbenchAdapter.java:100)
at org.hibernate.eclipse.console.workbench.BasicWorkbenchAdapter.fetchDeferredChildren(BasicWorkbenchAdapter.java:106)
at org.eclipse.ui.progress.DeferredTreeContentManager$1.run(DeferredTreeContentManager.java:235)
at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
Caused by: java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.hibernate.console.ConfigurationFactory.buildJPAConfiguration(ConfigurationFactory.java:229)
... 12 more
Caused by: javax.persistence.PersistenceException: [PersistenceUnit: jpatest1] Unable to configure EntityManagerFactory
at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:376)
... 17 more
Caused by: org.hibernate.AnnotationException: No identifier specified for entity: org.example2.Customer2
at org.hibernate.cfg.InheritanceState.determineDefaultAccessType(InheritanceState.java:272)
at org.hibernate.cfg.InheritanceState.getElementsToProcess(InheritanceState.java:227)
at org.hibernate.cfg.AnnotationBinder.bindClass(AnnotationBinder.java:712)
at org.hibernate.cfg.AnnotationConfiguration.processArtifactsOfType(AnnotationConfiguration.java:636)
at org.hibernate.cfg.AnnotationConfiguration.secondPassCompile(AnnotationConfiguration.java:359)
at org.hibernate.cfg.Configuration.buildMappings(Configuration.java:1206)
at org.hibernate.ejb.Ejb3Configuration.buildMappings(Ejb3Configuration.java:1459)
at org.hibernate.ejb.EventListenerConfigurator.configure(EventListenerConfigurator.java:193)
at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:1086)
at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:280)
at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:364)
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 11 months
[JBoss JIRA] Created: (JBIDE-6343) Create a "sanity check plugin/feature" tool for running on integration builds
by Max Rydahl Andersen (JIRA)
Create a "sanity check plugin/feature" tool for running on integration builds
-----------------------------------------------------------------------------
Key: JBIDE-6343
URL: https://jira.jboss.org/browse/JBIDE-6343
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Reporter: Max Rydahl Andersen
Fix For: LATER
I keep seeing the following antipatterns or oversights happening in our codebase, most of them I believe we could mechanically check for.
No duplicate names in .project since it makes it impossible to import into Eclipse
bin folders should be svn:ignored and not be committed (causes problems when doing svn synchronization and all the .class files are showing up and some even commits it)
things in svn:ignore should be committed (either someone overrode svn:ignore or the svn:ignore were added later)
if pom.xml file exists target should be svn:ignored too.
Execution environment should be specified in manifest.mf's
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 11 months