Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exception while drag-drop of card to panel #136

Closed
damithc opened this issue Jul 18, 2014 · 8 comments
Closed

Exception while drag-drop of card to panel #136

damithc opened this issue Jul 18, 2014 · 8 comments

Comments

@damithc
Copy link
Contributor

damithc commented Jul 18, 2014

Got this exception while trying to drag a card to a panel

Exception in thread "JavaFX Application Thread" java.lang.ArrayIndexOutOfBoundsException: -1
    at java.util.ArrayList.elementData(Unknown Source)
    at java.util.ArrayList.get(Unknown Source)
    at com.sun.javafx.collections.ObservableListWrapper.get(Unknown Source)
    at model.TurboIssue.getLabelReference(TurboIssue.java:159)
    at model.TurboIssue.addToLabels(TurboIssue.java:261)
    at model.TurboIssue.addLabel(TurboIssue.java:225)
    at model.TurboIssue.setLabels(TurboIssue.java:268)
    at model.TurboIssue.copyValues(TurboIssue.java:344)
    at model.TurboIssue.<init>(TurboIssue.java:298)
    at ui.SidePanel.triggerIssueEdit(SidePanel.java:87)
    at ui.IssuePanel.lambda$0(IssuePanel.java:79)
    at ui.IssuePanel$$Lambda$73/665850849.changed(Unknown Source)
    at javafx.beans.value.WeakChangeListener.changed(Unknown Source)
    at com.sun.javafx.binding.ExpressionHelper$SingleChange.fireValueChangedEvent(Unknown Source)
    at com.sun.javafx.binding.ExpressionHelper.fireValueChangedEvent(Unknown Source)
    at javafx.beans.property.ReadOnlyObjectWrapper$ReadOnlyPropertyImpl.fireValueChangedEvent(Unknown Source)
    at javafx.beans.property.ReadOnlyObjectWrapper.fireValueChangedEvent(Unknown Source)
    at javafx.beans.property.ObjectPropertyBase.markInvalid(Unknown Source)
    at javafx.beans.property.ObjectPropertyBase.set(Unknown Source)
    at javafx.scene.control.SelectionModel.setSelectedItem(Unknown Source)
    at javafx.scene.control.MultipleSelectionModelBase$1.invalidated(Unknown Source)
    at com.sun.javafx.binding.ExpressionHelper$SingleInvalidation.fireValueChangedEvent(Unknown Source)
    at com.sun.javafx.binding.ExpressionHelper.fireValueChangedEvent(Unknown Source)
    at javafx.beans.property.ReadOnlyIntegerWrapper$ReadOnlyPropertyImpl.fireValueChangedEvent(Unknown Source)
    at javafx.beans.property.ReadOnlyIntegerWrapper.fireValueChangedEvent(Unknown Source)
    at javafx.beans.property.IntegerPropertyBase.markInvalid(Unknown Source)
    at javafx.beans.property.IntegerPropertyBase.set(Unknown Source)
    at javafx.scene.control.SelectionModel.setSelectedIndex(Unknown Source)
    at javafx.scene.control.MultipleSelectionModelBase.select(Unknown Source)
    at javafx.scene.control.MultipleSelectionModelBase.clearAndSelect(Unknown Source)
    at com.sun.javafx.scene.control.behavior.ListCellBehavior.simpleSelect(Unknown Source)
    at com.sun.javafx.scene.control.behavior.ListCellBehavior.doSelect(Unknown Source)
    at com.sun.javafx.scene.control.behavior.ListCellBehavior.mousePressed(Unknown Source)
    at com.sun.javafx.scene.control.skin.BehaviorSkinBase$1.handle(Unknown Source)
    at com.sun.javafx.scene.control.skin.BehaviorSkinBase$1.handle(Unknown Source)
    at com.sun.javafx.event.CompositeEventHandler$NormalEventHandlerRecord.handleBubblingEvent(Unknown Source)
    at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(Unknown Source)
    at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(Unknown Source)
    at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(Unknown Source)
    at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(Unknown Source)
    at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(Unknown Source)
    at com.sun.javafx.event.EventUtil.fireEventImpl(Unknown Source)
    at com.sun.javafx.event.EventUtil.fireEvent(Unknown Source)
    at javafx.event.Event.fireEvent(Unknown Source)
    at javafx.scene.Scene$MouseHandler.process(Unknown Source)
    at javafx.scene.Scene$MouseHandler.access$1800(Unknown Source)
    at javafx.scene.Scene.impl_processMouseEvent(Unknown Source)
    at javafx.scene.Scene$ScenePeerListener.mouseEvent(Unknown Source)
    at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(Unknown Source)
    at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(Unknown Source)
    at com.sun.glass.ui.View.handleMouseEvent(Unknown Source)
    at com.sun.glass.ui.View.notifyMouse(Unknown Source)
    at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
    at com.sun.glass.ui.win.WinApplication.access$300(Unknown Source)
    at com.sun.glass.ui.win.WinApplication$4$1.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
@damithc
Copy link
Contributor Author

damithc commented Jul 18, 2014

btw, this happened for project powerpointlabs/repo

@naomilwx
Copy link
Collaborator

[Change Log]
Labels added: [type.bug]

@naomilwx
Copy link
Collaborator

what was the filter when it happened?

@damithc
Copy link
Contributor Author

damithc commented Jul 18, 2014

something like this: milestone(V1.8.x) ~status(closed)
btw, I never defined which status labels are considered open/closed for
this repo. May be this repo doesn't have a label that HubTurbo expects to
see?

naomilwx added a commit that referenced this issue Jul 21, 2014
@jwwong
Copy link
Collaborator

jwwong commented Jul 21, 2014

[Change Log]
Milestone changed: [previous: null] [new: V0.5]

@damithc
Copy link
Contributor Author

damithc commented Jul 24, 2014

[Change Log]
priority: null ~> priority.high

@damithc
Copy link
Contributor Author

damithc commented Aug 9, 2014

[Change Log]
Milestone changed: V0.5 ~> ** **

@damithc
Copy link
Contributor Author

damithc commented Jan 4, 2015

Closing because no recent occurrences

@damithc damithc closed this as completed Jan 4, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants