[JBoss JIRA] (ERT-191) ClassCastException from KeywordCompletionProposalComputer & IdentifierCompletionProposalComputer witn Neon M7 [EBZ#493393]
by Victor Rubezhny (JIRA)
[ https://issues.jboss.org/browse/ERT-191?page=com.atlassian.jira.plugin.sy... ]
Victor Rubezhny updated ERT-191:
--------------------------------
Fix Version/s: Neon (4.6) RC3
> ClassCastException from KeywordCompletionProposalComputer & IdentifierCompletionProposalComputer witn Neon M7 [EBZ#493393]
> --------------------------------------------------------------------------------------------------------------------------
>
> Key: ERT-191
> URL: https://issues.jboss.org/browse/ERT-191
> Project: Eclipse Release Train
> Issue Type: Task
> Components: JSDT
> Reporter: Friendly Jira Robot
> Assignee: Victor Rubezhny
> Labels: General, bzira
> Fix For: Neon (4.6) RC3
>
>
> The Eclipse Neon M7 provides KeywordCompletionProposalComputer & IdentifierCompletionProposalComputer classes which doesn't use "instanceof" to check that the given ContentAssistInvocationContext is a JavaContentAssistInvocationContext:
> ```
> public class IdentifierCompletionProposalComputer implements IJavaCompletionProposalComputer {
> public List computeCompletionProposals(ContentAssistInvocationContext context, IProgressMonitor monitor) {
> JavaContentAssistInvocationContext javaContext = (JavaContentAssistInvocationContext) context;
> ```
> It's a big problem for typescript.java which is based on JSDT and which defines TypeScriptContentAssistInvocationContext (see issue at
> https://github.com/angelozerr/typescript.java/issues/56)
> So with oEclipse Neon M7, when I do completion with my TypeScriptEditor based on JSDT Edit, I have a popup error with this error
> ```
> java.lang.ClassCastException: ts.eclipse.ide.jsdt.internal.ui.editor.contentassist.TypeScriptContentAssistInvocationContext cannot be cast to org.eclipse.wst.jsdt.ui.text.java.JavaContentAssistInvocationContext
> at org.eclipse.wst.jsdt.internal.ui.text.java.KeywordCompletionProposalComputer.computeCompletionProposals(KeywordCompletionProposalComputer.java:45)
> ```
> and
> ```
> java.lang.ClassCastException: ts.eclipse.ide.jsdt.internal.ui.editor.contentassist.TypeScriptContentAssistInvocationContext cannot be cast to org.eclipse.wst.jsdt.ui.text.java.JavaContentAssistInvocationContext
> at org.eclipse.wst.jsdt.internal.ui.text.java.IdentifierCompletionProposalComputer.computeCompletionProposals(IdentifierCompletionProposalComputer.java:49)
> ```
> It should b every cool if you could check that ContentAssistInvocationContext is an instanceof JavaContentAssistInvocationContext:
> ```
> public class IdentifierCompletionProposalComputer implements IJavaCompletionProposalComputer {
> public List computeCompletionProposals(ContentAssistInvocationContext context, IProgressMonitor monitor) {
> if (context instanceof JavaContentAssistInvocationContext) {
> JavaContentAssistInvocationContext javaContext = (JavaContentAssistInvocationContext) context;
> ```
> for :
> * http://git.eclipse.org/c/jsdt/webtools.jsdt.git/tree/bundles/org.eclipse....
> * http://git.eclipse.org/c/jsdt/webtools.jsdt.git/tree/bundles/org.eclipse....
> For your infomration, I have created my own TypeScriptContentAssistInvocationContext, because I need IResource and I don't use IJavaCompilationUnit. If http://git.eclipse.org/c/jsdt/webtools.jsdt.git/tree/bundles/org.eclipse.... could just define a getter for the Editor, I think I could use directly JavaContentAssistInvocationContext to retrieve my IResource from the getEditor getter.
> Hope this issue will be able to fixed for Neon release, otherwise typescript.java will not work with Eclipse Neon release -( (we must desactivate the whole JSDT completions to avoid having those 2 popup errors)
> Many thanks for your help!
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 9 months
[JBoss JIRA] (ERT-191) ClassCastException from KeywordCompletionProposalComputer & IdentifierCompletionProposalComputer witn Neon M7 [EBZ#493393]
by Victor Rubezhny (JIRA)
[ https://issues.jboss.org/browse/ERT-191?page=com.atlassian.jira.plugin.sy... ]
Victor Rubezhny resolved ERT-191.
---------------------------------
Resolution: Done
> ClassCastException from KeywordCompletionProposalComputer & IdentifierCompletionProposalComputer witn Neon M7 [EBZ#493393]
> --------------------------------------------------------------------------------------------------------------------------
>
> Key: ERT-191
> URL: https://issues.jboss.org/browse/ERT-191
> Project: Eclipse Release Train
> Issue Type: Task
> Components: JSDT
> Reporter: Friendly Jira Robot
> Assignee: Victor Rubezhny
> Labels: General, bzira
> Fix For: Neon (4.6) RC3
>
>
> The Eclipse Neon M7 provides KeywordCompletionProposalComputer & IdentifierCompletionProposalComputer classes which doesn't use "instanceof" to check that the given ContentAssistInvocationContext is a JavaContentAssistInvocationContext:
> ```
> public class IdentifierCompletionProposalComputer implements IJavaCompletionProposalComputer {
> public List computeCompletionProposals(ContentAssistInvocationContext context, IProgressMonitor monitor) {
> JavaContentAssistInvocationContext javaContext = (JavaContentAssistInvocationContext) context;
> ```
> It's a big problem for typescript.java which is based on JSDT and which defines TypeScriptContentAssistInvocationContext (see issue at
> https://github.com/angelozerr/typescript.java/issues/56)
> So with oEclipse Neon M7, when I do completion with my TypeScriptEditor based on JSDT Edit, I have a popup error with this error
> ```
> java.lang.ClassCastException: ts.eclipse.ide.jsdt.internal.ui.editor.contentassist.TypeScriptContentAssistInvocationContext cannot be cast to org.eclipse.wst.jsdt.ui.text.java.JavaContentAssistInvocationContext
> at org.eclipse.wst.jsdt.internal.ui.text.java.KeywordCompletionProposalComputer.computeCompletionProposals(KeywordCompletionProposalComputer.java:45)
> ```
> and
> ```
> java.lang.ClassCastException: ts.eclipse.ide.jsdt.internal.ui.editor.contentassist.TypeScriptContentAssistInvocationContext cannot be cast to org.eclipse.wst.jsdt.ui.text.java.JavaContentAssistInvocationContext
> at org.eclipse.wst.jsdt.internal.ui.text.java.IdentifierCompletionProposalComputer.computeCompletionProposals(IdentifierCompletionProposalComputer.java:49)
> ```
> It should b every cool if you could check that ContentAssistInvocationContext is an instanceof JavaContentAssistInvocationContext:
> ```
> public class IdentifierCompletionProposalComputer implements IJavaCompletionProposalComputer {
> public List computeCompletionProposals(ContentAssistInvocationContext context, IProgressMonitor monitor) {
> if (context instanceof JavaContentAssistInvocationContext) {
> JavaContentAssistInvocationContext javaContext = (JavaContentAssistInvocationContext) context;
> ```
> for :
> * http://git.eclipse.org/c/jsdt/webtools.jsdt.git/tree/bundles/org.eclipse....
> * http://git.eclipse.org/c/jsdt/webtools.jsdt.git/tree/bundles/org.eclipse....
> For your infomration, I have created my own TypeScriptContentAssistInvocationContext, because I need IResource and I don't use IJavaCompilationUnit. If http://git.eclipse.org/c/jsdt/webtools.jsdt.git/tree/bundles/org.eclipse.... could just define a getter for the Editor, I think I could use directly JavaContentAssistInvocationContext to retrieve my IResource from the getEditor getter.
> Hope this issue will be able to fixed for Neon release, otherwise typescript.java will not work with Eclipse Neon release -( (we must desactivate the whole JSDT completions to avoid having those 2 popup errors)
> Many thanks for your help!
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 9 months
[JBoss JIRA] (ERT-303) (Toll Free) 1-800-962-0723 Lexmark Printer Tech Support Phone Number
by pam olive (JIRA)
pam olive created ERT-303:
-----------------------------
Summary: (Toll Free) 1-800-962-0723 Lexmark Printer Tech Support Phone Number
Key: ERT-303
URL: https://issues.jboss.org/browse/ERT-303
Project: Eclipse Release Train
Issue Type: Feature Request
Reporter: pam olive
(Toll Free) 1-800-962-0723 Lexmark Printer Tech Support Phone Number (Toll Free) 1-800-962-0723 Lexmark Printer Tech Support Phone Number (Toll Free) 1-800-962-0723 Lexmark Printer Tech Support Phone Number (Toll Free) 1-800-962-0723 Lexmark Printer Tech Support Phone Number (Toll Free) 1-800-962-0723 Lexmark Printer Tech Support Phone Number $$$TALK@@!!!!@@!!C-A-N-A-D-A USA @@1-800-962-0723@ Lexmark w-i-r-e-l-e-s-s printer customer tech support phone number... $$CANADA CALL USA @@@@1-800-962-0723@ Lexmark wireless printer customer tech support phone number...pdf $$File !!CALL USA @@@@1-800-962-0723@ Lexmark wireless printer customer tech support phone number... File !!CALL USA@@@@1-800-962-0723@ Lexmark wireless printer customer tech support phone number.pdf, 5.9 KB !!CALL USA(a)1.800.962.0723@ Lexmark wireless printer customer tech support phone number Customer care Service Support Phone Number CALL USA(a)*1.800.962.0723*@ Lexmark wireless printer customer tech support phone number Customer care Service Support Phone Number CALL USA(a)*1.800.962.0723*@ Lexmark printer customer(( 1 800 962 0723 ))tech support phone number Customer care Service ( 1800 962 0723 )Support Phone Number di@L Lexmark PRiNter@@@@@ . . . . .CANADA$$$Us@@ Lexmark printer customer technical support phone number 1800 962 0723 @@NEWYORK>>>>>>>>>>>#$$$!$CALL @@CALL USA !!1 800 962 0723 Lexmark Printer wireless customer service number 1 800 962 0723$$$$$ ++ Lexmark us Lexmark c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number 1 800 962 0723 ++ Lexmark us Lexmark c.u.s.t.o.m.e.r s.e.r.v.i.c.e P.h.o.n.e number Lexmark printer telephone number@@CALL USA !!1 800 962 0723Lexmark Printer wireless customer service phone number and Lexmark Printer tech support phone number Lexmark Printer wireless customer service and support phone number ??? usa FAST CALL @@ 1 800 962 0723Lexmark Printer wireless customer service and support phone number usa FAST CALL @@ 1 800 962 0723Lexmark Printer wireless customer service and 1 number usa CALL @@ 1 800 962 0723Lexmark Printer wireless customer service and support phone number us CALL @@ 1 800 962 0723Lexmark Printer wireless customer service and support phone number usa CALL @@ 1 800 962 0723Lexmark Printer wireless customer service and support phone number Lexmark Printer scanner, Lexmark Printers phone number, Lexmark Printers customer support, Lexmark support center, Lexmark tech, support phone number, Lexmark s printers customer service, Lexmark Printer wireless customer service number, Lexmark Printers technical support, Lexmark Printer helpline numbe,Lexmark support phone number, bther support printer, Lexmark technical support number, Lexmark Printers contact, troublesh44ting Lexmark printe, , Lexmark Printer phone support, Lexmark Printers support phone number, troublesh44t Lexmark Printer, Lexmark Printers contact number, Lexmark s customer service, Lexmark Printer number¸Lexmark phone support, Lexmark troublesh44ting, Lexmark Printer customer care, Lexmark wireless Printer help desk, drivers for Lexmark Printers, Lexmark technical support phone number, Lexmark customer service phone, contact Lexmark Printers, Lexmark Printer customer care number, Lexmark help desk¸Lexmark online support, Lexmark customer support phone number, Lexmark s printer customer service¸Lexmark Printer mfc, Lexmark Printers tech support phone number, Lexmark service¸Lexmark s tech support, Lexmark Printers customer service phone number, Lexmark Printer install, Lexmark laser printers, ??? Lexmark s printers, support Lexmark Printer, Lexmark Printer service centre, Lexmark Printer updates, Lexmark inkjet printer, contact Lexmark support, Lexmark tech support phone, @@ ((()) Lexmark lc61, Lexmark s printers tech support, printers online, contact Lexmark Printer, Lexmark s printer, Lexmark label printer, Lexmark customer support phone, Lexmark Printers customer support number, Lexmark support centre, Lexmark laser printer, Lexmark Printer wireless customer service support, Lexmark wireless printer setup, buy Lexmark Printer online, Lexmark Printer tech support number, Lexmark network printer, Lexmark Printers customer service number, customer service for Lexmark Printers, Lexmark service centre, Lexmark wireless printer, @@ ((()) Lexmark Printers, Lexmark customer care, Lexmark Printer online support, Lexmark wireless Printer toll free number, phone number for Lexmark Printers, Lexmark Printer installation, Lexmark Printers help, desk, Lexmark wireless Printer support phone, service Lexmark , Lexmark mfc, Lexmark Printer customer support , umber, Lexmark Printers technical support phone number, Lexmark Printer hotline, contact number for Lexmark Printers,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Lexmark Printer, Lexmark .com support, contact Lexmark wireless Printer support, Lexmark Printer troublesh44t, Lexmark telephone support, Lexmark Printers customer support phone number, Lexmark , printer help phone number, Lexmark customer service telephone number, Lexmark Printer tech support, phone, Lexmark .ca support, Lexmark Printer online, Lexmark multifunction printer, printer support, Lexmark , printer help, Lexmark mfc printer, technical support for Lexmark Printers, Lexmark tech support number, email support, Lexmark Printers support phone, mfc Lexmark , Lexmark hl2271dw, Lexmark Printers website¸Lexmark wireless Printer support, Lexmark Printers repair, repair Lexmark Printer, Lexmark Printers support, Lexmark , @@ ((()) helpline number,Lexmark scanner printer, Lexmark Printers service, Lexmark Printers customer service, telephone number, Lexmark Printer phone number customer service, Lexmark Printers review, www.Lexmark .com, support for, , rother printer, Lexmark Printer repair, service Lexmark Printer, phone, number for Lexmark wireless Printer support, Lexmark Printer website, Lexmark Printers customer service phone¸Lexmark Printer problems and , olutions, Lexmark s printers customer service phone number, customer service Lexmark Printer, solution Lexmark , Lexmark fax support, mfc Lexmark Printer, Lexmark Printer, customer service phone, Lexmark Printer help number, Lexmark mfc-8461n, Lexmark wireless Printer support line, Lexmark Printers service centre, Lexmark wireless laser printer, Lexmark s printer help, Lexmark fax helpline, Lexmark Printers number, Lexmark Printers contact phone number, Lexmark Printer telephone support, Lexmark Printer servicing, tech support for Lexmark Printers, Lexmark Printer customer care no, Lexmark fax customer service, Lexmark Printer official website, 2 customer service, Lexmark technical support, Lexmark Printers phone support, Lexmark technical support phone, Lexmark Printer repair service, Lexmark Printer setup, Lexmark printing problems, Lexmark s techni@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@cal support, printer drivers, Lexmark mfc support, Lexmark repairs, installing Lexmark Printer, Lexmark copier support, support Lexmark Printers, Lexmark s printer support phone number, @@ ((()) Lexmark s technical support phone number, Lexmark product support, Lexmark Printer and scanner, Lexmark s printers troublesh44ting, Lexmark wireless Printer support contact number, Lexmark Printer technical support number, samsung printer support, Lexmark s printer troublesh44ting, Lexmark Printers online, Lexmark troublesh44ting printer, customer service number for Lexmark Printers, Lexmark 800 number, Lexmark troubleshooting Printer support telephone number, Lexmark inkjet printers, Lexmark s drivers, Lexmark Printer toll free no, Lexmark fax machine customer service, mfc printer, rother toll free technical support, Lexmark Printer not printing, Lexmark Printer reviews, Lexmark Printers support number, Lexmark multifunction laser printer, Lexmark Printers Australia, 3 customer service telephone number, Lexmark Printer technical support telephone number, Lexmark s printer support number, Lexmark mfc printers, Lexmark repair center, Lexmark tech, call Lexmark wireless Printer support, Lexmark wireless printer driver, Lexmark Printer contact phone number, Lexmark Printer troublesh44ting, Lexmark multifunction printers, Lexmark Printers problems, troublesh44ting Lexmark Printer problems, Lexmark 4, online printer support, Lexmark Printer problems solutions., rother printers installation, printer Lexmark mfc, Lexmark s printer customer service phone number, Lexmark toll free number, Lexmark phone number technical support Lexmark Printers Canada, printer Lexmark , Lexmark s customer service phone number, Lexmark mfc printer support, newest Lexmark Printer, Lexmark Printer wireless customer service, Lexmark copiers support, Lexmark phone number customer service, Lexmark contact support, air printers Lexmark_ Activity 3.0 docs Lexmark+?@1-800-962-0723@™+ printer tech support number@1-800-962-0723 @Lexmark printer customer service number,Lexmark printer customer support phone number Customer care Service Support Phone Number, Lexmark printer support number, US hinas Lexmark@@+?™+ printer tech support number @ 1-800-962-0723 @Lexmark tech support number Lexmark printer customer service number,Lexmark tech support number, Lexmark printer customer service number,Lexmark printer customer support phone number Customer care Service Support Phone Number USA Call 1-800 962 0723 1-800 962 0723 Lexmark Tech Support Phone Number Canada Lexmark printer customer service number1-800 962 0723 Lexmark support number, Lexmark support, Lexmark printer support, Lexmark tech support, Lexmark technical support, Lexmark customer service number, Lexmark customer service, Lexmark tech support number, ##Lexmark support center##, Lexmark printer support number, hewlett packard support, Lexmark contact number, Lexmark phone number, Lexmark help and support, Lexmark customer support, Lexmark printer help, Lexmark technical support number, Lexmark support phone number, hewlett packard customer service, Lexmark printers support, Lexmark customer service phone number, Lexmark number, Lexmark customer care, Lexmark contact, Lexmark tech support phone number, Lexmark support chat, Lexmark customer support number, Lexmark customer care number, contact Lexmark support, Lexmark help, Lexmark phone, Lexmark printer support phone number, Lexmark customer support phone number, Lexmark printer tech support, Lexmark phone support, Lexmark technical support phone number, Lexmark laptop support number, hewlett packard printer support, Lexmark helpline, Lexmark telephone support, Lexmark online support, Lexmark support contact, Lexmark chat support, hewlett packard!@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@! phone number, Lexmark printer customer service, Lexmark printer tech support number, Lexmark product support, hewlett packard customer service phone number, Lexmark computer support number, Lexmark support contact number, Lexmark support printer, Lexmark computer support, Lexmark tech support chat, Lexmark helpline number, Lexmark laptop support, hewlett packard tech support, Lexmark online chat, hewlett packard technical support, Lexmark printer help line, phone number for Lexmark support, hewlett packard support phone number, Lexmark printer technical support, hewlett packard customer service number, Lexmark service number, hewlett packard helpline, Lexmark customer care no, Lexmark printer customer service number, Lexmark help number, Lexmark printer customer service phone number, Lexmark 1800 number, Lexmark support phone, Lexmark support line, hewlett packard contact number, Lexmark printer tech support phone number, Lexmark printer customer support phone number, Lexmark printers help, call Lexmark support, ##Lexmark printer support## chat, hewlett packard support number, hewlett packard tech support number, Lexmark support telephone number, hewlett packard tech support phone number, call Lexmark, Lexmark contact support, hewlett packard technical support phone number, Lexmark support centre, hewlett packard customer support, Lexmark desktop support, Lexmark laptop customer service, contact Lexmark printer support, Lexmark pc support, Lexmark laptop customer care number, Lexmark support for printers, Lexmark printer customer care, Lexmark customer care phone number, hewlett packard help, phone number for Lexmark, Lexmark online help, Lexmark laptop customer care, Lexmark helpline phone number, Lexmark printer customer support, Lexmark technical support chat, Lexmark computer help, Lexmark support numbers, Lexmark technical support contact number, Lexmark telephone number, Lexmark printer technical support phone number, Lexmark printer helpline, Lexmark support printers, Lexmark support online, Lexmark printer contact number, Lexmark help phone number, Lexmark printer customer care number, contact hewlett packard by phone, Lexmark printer phone support, hewlett packard printers support, Lexmark tech support phone, Lexmark technical help, Lexmark laptop tech support number, contact Lexmark by phone, Lexmark support call, Lexmark computers support, hewlett packard customer service telephone number, phone number for hewlett packard, Lexmark online support chat, Lexmark laptop customer service number, Lexmark online chat support, Lexmark printers customer service, hewlett packard customer service phone, Lexmark laptop tech support, Lexmark service phone number, hewlett packard printer help, phone number for Lexmark printers, Lexmark troubleshooting phone number, Lexmark 800 number, hewlett packard technical support number, contact Lexmark support phone, phone number for Lexmark printer support, Lexmark customer support chat, Lexmark help and support number, contact hewlett packard, Lexmark laptop support phone number, Lexmark printers customer service phone number, Lexmark laptop customer service phone number, Lexmark computer support phone number, Lexmark pavilion support, Lexmark computer customer service, Lexmark customer services, hewlett packard telephone number, Lexmark helpline no, Lexmark help desk number, contact Lexmark support phone number, hewlett packard contact, Lexmark phone numbers, Lexmark printers customer care number, Lexmark printer help and support, contact Lexmark technical support, Lexmark contact numbers, contact Lexmark support chat, call Lexmark tech support, Lexmark customer service phone, Lexmark help supp@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ort, Lexmark computer tech support, Lexmark assistance phone number, Lexmark customer service telephone number, hewlett packard printer support phone number, Lexmark contact support number, Lexmark support center phone number, Lexmark support phone numbers, tech support for Lexmark, Lexmark it support, Lexmark laptop helpline, Lexmark technical, Lexmark laptop technical support number, Lexmark printers tech support phone number, Lexmark printers support phone number, hewlett packard help desk phone number, Lexmark computer tech support phone number, Lexmark customer service number for laptop, Lexmark printer helpline number, contact Lexmark support by phone, hewlett packard support center, Lexmark laptop customer care no, Lexmark printer support telephone number, Lexmark support services, Lexmark customer service number for printers, Lexmark product support number, Lexmark laptop tech support phone number, Lexmark printer helpline phone number, contact Lexmark customer support, hewlett packard customer support phone number, Lexmark printers technical support, Lexmark customer care center, support for Lexmark printers, Lexmark printer support center, phone number for Lexmark tech support, Lexmark desktop customer care number, Lexmark laptops support, Lexmark printer online support, Lexmark printer phone number, hewlett packard printers support phone number, technical support for Lexmark printers phone number, Lexmark help center phone number, contact Lexmark tech support, call Lexmark printer support, Lexmark printers customer support, Lexmark computer customer service number, Lexmark printers helpline, Lexmark customer care contact number, Lexmark laptop help, Lexmark computer customer service phone number, phone number for hewlett packard customer service, hewlett packard 800 number, Lexmark printer help phone number, Lexmark printers help phone number, Lexmark printer phone number for customer service, Lexmark computer technical support phone number, customer service Lexmark, Lexmark support technical support number, contact number for Lexmark, Lexmark computers support phone number, Lexmark printers support number, Lexmark printer technical support number, contact Lexmark tech support by phone,
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 9 months
[JBoss JIRA] (ERT-188) javascript include path not excluding folders from validaton [EBZ#489461]
by Victor Rubezhny (JIRA)
[ https://issues.jboss.org/browse/ERT-188?page=com.atlassian.jira.plugin.sy... ]
Victor Rubezhny resolved ERT-188.
---------------------------------
Resolution: Duplicate Issue
> javascript include path not excluding folders from validaton [EBZ#489461]
> -------------------------------------------------------------------------
>
> Key: ERT-188
> URL: https://issues.jboss.org/browse/ERT-188
> Project: Eclipse Release Train
> Issue Type: Task
> Components: JSDT
> Reporter: Friendly Jira Robot
> Labels: 3.8_M7, General, bzira
> Fix For: Neon (4.6) RC3
>
>
> Going to Project Properties > Javascript > Include Path, selecting the Source tab and adding folders to exclude is not working in Neon Milestone 4 (4.6.0M5). Errors from the folders I've set to exclude are still present. I've done the exact same thing in Luna and it worked as expected. Thanks all for the great work!
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 9 months
[JBoss JIRA] (ERT-301) hurry up panda support 1-866-992-6425 hurry up panda antivirus tech support number
by pam olive (JIRA)
pam olive created ERT-301:
-----------------------------
Summary: hurry up panda support 1-866-992-6425 hurry up panda antivirus tech support number
Key: ERT-301
URL: https://issues.jboss.org/browse/ERT-301
Project: Eclipse Release Train
Issue Type: Feature Request
Reporter: pam olive
hurry up panda support 1-866-992-6425 hurry up panda antivirus tech support numberCanada and USA 18669926425 Panda antivirus phone number, Panda helpline phone number
18669926425 Panda customer care phone number, Panda helpline phone numberPopatLaal [[18669926425]] Panda customer care phone number, Panda helpline phone number
Panda antivirus phone number 18669926425 Panda Antivirus tech support numberPanda tech support phone number Help desk Panda antivirus phone number australia 18669926425 Panda customer service number us 18669926425Panda customer service phone numberPanda contact numberPanda Antivirus phone number us 18669926425Panda numberPanda support numberPanda antivirus phone numberPanda customer service numberPanda customer service phone numberPanda contact number Panda phone number Panda number au Panda pso support number aus Panda antivirus phone number Panda customer service numberhtntivirus-tech-support-number-usa-Panda -technical-support-number hPanda pos customer service phone number Panda contact number Panda pos support phone number Panda pos tech support number Panda pos security phone number Panda telephone number Panda antivirus phone number Panda phone number customer service usa Panda customer support phone number Panda antivirus customer service number Panda antivirus customer service phone number phone number forPanda Panda antivirus contact number Panda antivirus contact number Panda antivirus customer service number Panda antivirus support phone number australia Panda antivirus support phone number aus Panda customer support number au Panda security contact number canada Panda antivirus customer service phone number usa Panda antivirus number uk Panda antivirus technical support phone number Panda antivirus contact phone number Panda antivirus technical support number Panda antivirus support number Panda tech support phone number Panda contact phone number Panda antivirus customer support phone number Panda antivirus phone number support phone number forPanda antivirus customer service phone number forPanda security Panda help number phone number forPanda antivirus Panda help phone number phone number forPanda customer service Panda security customer service phone number Panda security phone number customer service Panda antivirus contact number for customer service Panda antivirus telephone number Panda antivirus contact phone number Panda antivirus phone support number Panda antivirus technical support phone number Panda security telephone number contact number forPanda Panda antivirus number Panda antivirus help phone number Panda antivirus support number Panda antivirus telephone number Panda pos customer care number Panda pos security contact phone number Panda antivirus technical support phone number Panda antivirus tech support phone number phone number forPanda support Panda toll free number Panda antivirus tech support number Panda account contact number Panda antivirus phone number customer service Panda antivirus tech support phone number Panda antivirus help phone number Panda telephone number customer service Panda antivirus phone number customer service Panda antivirus support telephone number Panda antivirus tech support number Panda security support phone number Panda helpline number telephone number forPanda customer service Panda antivirus customer support phone number Panda support telephone number phone number forPanda customer support Panda antivirus number Panda customer service telephone number Panda pos customer service phone number Panda antivirus customer support number contact number forPanda enterprise Panda internet security phone number customer service telephone number forPanda phone number forPanda internet security contact number forPanda antivirus Panda account phone number phone number forPanda enterprise Panda antivirus telephone number customer service Panda .com phone number Panda support contact number Panda phone support number customer service number forPanda antivirus Panda com support phone number Panda internet security phone number Panda phone number support Panda phone number customer support Panda contact support number Panda internet security customer service number Panda antivirus help number contactPanda antivirus customer service phone number Panda antivirus customer support number Panda service number Panda antivirus customer service telephone number telephone number forPanda antivirus customer service Panda hotline number Panda security help phone number Panda antivirus toll free number Panda account customer service phone number phone number forPanda antivirus support Panda error phone number Panda .com customer service phone number Panda 866 phone number Panda antivirus phone support number customer service number forPanda errorPanda customer service phone number Panda internet security support phone number Panda helpline phone number Panda security customer services phone number Panda customer care phone number Panda 1866 support number Panda virus contact number phone number forPanda error Panda antivirus support telephone number Panda pos support phone number Panda internet security contact phone number Panda virus phone number Panda internet security help phone number Panda renewal phone number telephone number forPanda security Panda 1-866 number Panda antivirus 866 number Panda internet security contact number phone numberPanda antivirus contact number forPanda security Panda antivirus customer service telephone number Panda help desk phone number Panda antivirus customer care number Panda security customer service number phone number toPanda antivirus Panda virus customer service phone number contact phone number forPanda internet security customer servicePanda antivirus phone number Panda antivirus toll free number Panda customer service toll free number Panda utilities customer service phone number phone number forPanda by error Panda antivirus 1866 number Panda internet security tech support phone number Panda antivirus customer support telephone number Panda by error phone number Panda internet security telephone number Panda help desk number Panda customer service phone number usa Panda contact number uk Panda security number Panda renewal contact number Panda error customer service phone number Panda antivirus helpline number Panda antivirus tection phone number Panda computer security phone number telephone number forPanda antivirus Panda error contact number telephone number forPanda internet security Panda customer service number usa Panda antivirus number Panda software phone number Panda billing phone number Panda software contact number Panda uk contact number Panda antivirus contact number uk Panda internet contact number Panda internet security support number Panda internet phone number Panda error telephone number Panda contact number australia Panda technical support number usa Panda antivirus contact number uk Panda antivirus customer service phone number usa Panda internet security contact number uk Panda customer service phone number canada Panda anti virus phone number Panda uk phone number Panda phone number uk Panda customer service number uk Panda customer service phone number billing Panda telephone number uk Panda tech support number usa Panda security contact number uk Panda antivirus toll free number india contact number forPanda internet security Panda antivirus phone number customer service us Panda customer service phone number uk Panda toll free number india Panda support phone number usa Panda sales phone number Panda antivirus customer service phone number usa Panda phone number canada Panda phone number uk customer services Panda helpline number uk Panda antivirus contact number canada Panda phone number australia Panda antivirus customer service phone number us what is the phone number forPanda customer service Panda australia contact number Panda antivirus customer service phone number uk Panda antivirus support phone number usa Panda toll free number usa Panda contact phone number uk Panda antivirus phone number uk Panda antivirus customer service phone number uk Panda support uk phone number Panda support phone number canada Panda technical support phone number canada Panda abrasives phone number Panda security phone contact number Panda internet security customer service phone number uk Panda uk telephone number Panda canada phone number Panda security telephone number uk Panda antivirus contact number us Panda australia phone number Panda refund phone number Panda antivirus customer care number india Panda antivirus customer service phone number canada Panda internet security number Panda software customer service number Panda internet security telephone number uk Panda anti virus contact number Panda virus antivirus tection phone number Panda virus antivirus tection contact number Panda antivirus billing phone number Panda antivirus help desk phone number Panda tech support phone number us Panda post office phone number Panda internet security contact phone number uk Panda customer care number usa Panda antivirus uk contact number Panda customer support phone number canada Panda billing department number Panda antivirus contact number australia Panda antivirus customer service phone number canada Panda customer support number usa number forPanda antivirus Panda support number australia Panda support number uk
Activity
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 9 months
[JBoss JIRA] (ERT-190) JSON Editor icons [EBZ#493364]
by Victor Rubezhny (JIRA)
[ https://issues.jboss.org/browse/ERT-190?page=com.atlassian.jira.plugin.sy... ]
Victor Rubezhny resolved ERT-190.
---------------------------------
Resolution: Done
> JSON Editor icons [EBZ#493364]
> ------------------------------
>
> Key: ERT-190
> URL: https://issues.jboss.org/browse/ERT-190
> Project: Eclipse Release Train
> Issue Type: Task
> Components: WTP Source Editing
> Reporter: Friendly Jira Robot
> Assignee: Victor Rubezhny
> Labels: bzira, wst.json
> Fix For: Neon (4.6) RC3
>
>
> Created attachment 261611
> new set of png icons including xcf source and png result
> The set of icons proposed for JSON Editor's elements.
> XCF Source for new images - editable with GIMP, the source for the new iconset, so it will be easy to make minor changes.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 9 months
[JBoss JIRA] (ERT-190) JSON Editor icons [EBZ#493364]
by Victor Rubezhny (JIRA)
[ https://issues.jboss.org/browse/ERT-190?page=com.atlassian.jira.plugin.sy... ]
Victor Rubezhny reassigned ERT-190:
-----------------------------------
Fix Version/s: Neon (4.6) RC3
Assignee: Victor Rubezhny
> JSON Editor icons [EBZ#493364]
> ------------------------------
>
> Key: ERT-190
> URL: https://issues.jboss.org/browse/ERT-190
> Project: Eclipse Release Train
> Issue Type: Task
> Components: WTP Source Editing
> Reporter: Friendly Jira Robot
> Assignee: Victor Rubezhny
> Labels: bzira, wst.json
> Fix For: Neon (4.6) RC3
>
>
> Created attachment 261611
> new set of png icons including xcf source and png result
> The set of icons proposed for JSON Editor's elements.
> XCF Source for new images - editable with GIMP, the source for the new iconset, so it will be easy to make minor changes.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 9 months