Using visual editor with a modified component...

Hi,
I'm creating an MDI application with eclipse.
I'm using Visual editor plugin;
Now I've two visual class like this:
public class CommonFrame extends JInternalFrame {
  public CommonFrame(){
    super();
public class specificFrame extends CommonFrame {
  public specificFrame(){
    super();
}Now when I open specificFrame class in eclipse, Visual editor try to load GUI interface, but it fails to do this and show me this error:
java.lang.NoSuchMethodException(gui.CommonFrame.<init>())
I grant the code works fine;
the only problem is I must modify GUI class manually or
I must change the code "extend CommonFrame" into "extend JInternalFrame", then graphically modify the class, and then re-change the code.
Is there a way to resolve the above error?
Thank you in advance.
MargNat

My class has a no-args constructor, that is:
public specificFrame(/* no args */)
According to this error message:
java.lang.NoSuchMethodException(gui.CommonFrame.<init>())gui.CommonFrame doesn't.

Similar Messages

  • How to manage a connection with powershell using visual studio with C#

    Hi
     I want to manage a connection with powershell for a web app using visual studio with c#. and also run command with pipeline 
    Plz give a some suggestions..

    Hi Raj_Kumar_Saini,
    To make things clear, could you please clarify these thing?
    1. Do you mean you want to execute some PowerShell scripts from C# language? These blogposts may give you  some ideas:
    Executing PowerShell scripts from C#
    Powershell Automation and Remoting (a c# love story)
    Execute PowerShell from a ASP.NET Web Application
    2. Is your question related to Visual Studio Integration? Do you want to build a Visual Studio Extension?
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Problems using Visual Composer with Web Dynpro runtime

    I am currently trying to build a Visual Composer iView and we need to use the Web Dynpro runtime rather than Flash because it needs to work with a screen reader for users with sight problems.  Which is a pity because Flash works fine. But when I use Web Dynpro runtime I'm getting the following problems:
    a) When I define fields and pushbuttons in forms where Align Contents is set to Absolute, they do not appear at runtime in the positions in which I've placed them - all form elements are aligned vertically.  The only other options are to align all fields vertically or align all fields horizontally.  This lack of flexibility makes it rather difficult to create a good screen design; the only option seems to be to create a separate form for each set of differently aligned fields, which leads on to the next problem.  . 
    b) When I define more than one form on a page, again at runtime the forms do not always appear in the positions in which I've placed them; the compiler seems to calculate how much space it needs to display the screen elements and then re-sizes and  re-positions the forms accordingly, ignoring what I've told it to do. 
    c) Toolbar pushbuttons do not appear on forms (they do appear on tables).  Irritating, but at least I can still create pushbuttons on the form itself. 
    There are other issues, but the main problems is that it appears that when I use VC with Web Dynpro I cannot trust the editor layout at all and the only way I can build something that looks decent is to fiddle about with  field / form sizes and positions, checking every change on the output, until hopefully I get it looking ok.  Having to do this will dramatically increase the time taken to develop VC applications.  Has anyone else experienced these problems with VC and Web Dynpro?  Has anyone managed to overcome them?

    Thanks, but neither of these describes the problems I've been having.  And they are misleading since they say that you can use VC with Web Dynpro only with Web Services ie not directly with BAPIs / RFCs, but using it with BAPIs / RFCs is one of the few things that works well in our system. 
    The most recent problem I've found is that if you make a form or table read-only it will stay read-only in Flash but the fields are editable in Web Dynpro.  The individual field disable option does work for Web Dynpro, but it turns the fields from black to a vey pale and almost invisible grey (this doesn't happen in Flash).  And you can't seem to change this. 
    It does seem to be a bit pathetic that input fields can't be made read only.  I've tried expression boxes, which are read-only anyway, but they appear in as pale a grey as the disabled input fields.  And although plain text fields can be added to tables, they are pretty useless since they can only hold a single value and so all the lines will contain the same value. 
    I guess I should resign myself to the fact that I am never going to be able to produce a decent screen using VC and Web Dynprp.

  • JDev throws NPE using Visual Editor

    Hi,
    I post this here for information.
    Whilst trying to track down an intermittant JDev hang I ran the command line exe (jdev.exe) and saw this stack trace when using the Visual Ed to modify a panel layout.
    java.lang.NullPointerException
    at oracle.jdevimpl.uieditor.assistant.GridBagLayoutAssistant.prepareMouseMoveStatus(GridBagL
    ayoutAssistant.java:2507)
    at oracle.jdevimpl.uieditor.UIEditorController.mouseMoveNode(UIEditorController.java:767)
    at oracle.jdevimpl.uieditor.uicanvas.UICanvas$GlassPane.processMouseMoved(UICanvas.java:2406
    at oracle.jdevimpl.uieditor.uicanvas.UICanvas$GlassPane.processMouseMotionEvent(UICanvas.jav
    a:1624)
    at java.awt.Component.processEvent(Component.java:4901)
    at java.awt.Container.processEvent(Container.java:1569)
    at java.awt.Component.dispatchEventImpl(Component.java:3615)
    at java.awt.Container.dispatchEventImpl(Container.java:1627)
    at java.awt.Component.dispatchEvent(Component.java:3477)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3211)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
    at java.awt.Container.dispatchEventImpl(Container.java:1613)
    at java.awt.Window.dispatchEventImpl(Window.java:1606)
    at java.awt.Component.dispatchEvent(Component.java:3477)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    Regards
    Andy

    The code on that line is doing this:
    <pre>
    2501: public String prepareMouseMoveStatus(CmtModelNode node,
    2502: CmtModelNode toNode,
    2503: Point location)
    2504: {
    2505: Container container = toNode.getSubcomponent().getAsContainer();
    2506: GridBagLayout layout = (GridBagLayout) container.getLayout();
    2507: Point cell = layout.location(location.x, location.y);
    </pre>
    So either layout or location is null. I don't otherwise know enough about this area to say specifically what might be the problem. Can you send me sample code that reproduces the problem?
    Thanks,
    Brian

  • Using external editor with PSE 9

    I use CS4 as my external editor.Typically Adobe installs 2 versions 32 and 64 bit versions of CS4.
    When using Ctrl-H from within PSE9, it always calls the 64 bit version of CS4. How can I tell it to use the 32 bit version. I have to use 32 bit CS4 because of some plugins I need that do not work with the 64 bit version.
    Any suggestions?
    Thanks in advance.

    The work around is to copy the 32 bit application to My documents. Then rename it and put it back. You will have two identical applications. When you browse to the renamed application PSE will be fooled into thinking it’s another program.

  • Using FID editor with GW 2014?

    Hi,
    is it still possible to the use the old FID editor (GW5AFE.EXE) with
    GW2014? Because GW2014 does not use eDirectory objects anymore, the tool
    should fail when trying to connect to the gw domain.
    Is there any other way to move appointments/jobs from one user to an
    other, besides using archive export, FID editor and archive import? (if I
    just forward the items using the GW client, or use a tool like IMAPSize,
    the items become posted items instead of personal items)
    Thanks in advance,
    Frank

    Frank,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • GPU Acceleration for both FCP-X and Premiere? Anyone have NVIDIA GTX285 or NVIDIA QuadroFX 4800? ...and successful at using both editors with GPU Acceleration?

    I'm in the market for a Laptop MAC solution to GPU accelerated editing. Because of multi-client workflow needs, I need to edit HD video with both FCP-X and ADOBE CS5.5 Premiere. The only GPU capable Graphics Cards that seem to satisfy both "camps" are from NVIDIA - GTX285 and NVIDIA Quadro FX 4800
    Does anyone have these cards AND using both softwares AND having success at it?
    I sure would appreciate any experienced advice with using NVIDIA GPU accelration with MacBook Pro especially!
    Thanks,
    ~mars9

    How do you plan on using a PCIe card with a laptop? Via a Thunderbolt PCIe adapter? I can't help with that. In fact, I didn't think those adapters were even out yet.
    I do have a Mac Pro and I use the NVDIA Quadro 4000 For Mac. This works great for Premiere Pro. As good as the 4800 and for less money. Check out this comparison.
    http://barefeats.com/wst10g11.html

  • Trying to figure out how to use my xml with a tree component

    Hi All,
    I am trying to use a tree control for the first time and
    having a bit of difficulty. I have a Domino server that will
    generate XML for a specific view of information. The view looks
    just like what a tree control would look like. I wish I could paste
    a screen print . . .
    It looks like this:
    +/- ...01/31/2007
    ..+/- Steven Rieger
    ..........Company
    Name...Project-Number...Task-Name.....Total-Hours...Sat...Sun...Mon...Tue...Wed...Thu...F ri
    The Date and Name are collapsible .
    When I get the generated xml it's got a lot of crazy
    information in there that I don't need. I'm hoping someone can look
    at the xml below and provide some insight into how to parse it to
    achieve the look above.
    Thanks for your help!!!!
    - <viewentry position="1.1" noteid="80000008" children="2"
    descendants="6" siblings="30">
    - <entrydata columnnumber="1" name="$16"
    category="true">
    <datetime>20071026</datetime>
    </entrydata>
    - <entrydata columnnumber="7" name="TSTotHours">
    <number>53.5</number>
    </entrydata>
    - <entrydata columnnumber="8" name="TSHours_1">
    <number>6</number>
    </entrydata>
    - <entrydata columnnumber="9" name="TSHours_2">
    <number>9</number>
    </entrydata>
    - <entrydata columnnumber="10" name="TSHours_3">
    <number>6.5</number>
    </entrydata>
    - <entrydata columnnumber="11" name="TSHours_4">
    <number>8</number>
    </entrydata>
    - <entrydata columnnumber="12" name="TSHours_5">
    <number>8</number>
    </entrydata>
    - <entrydata columnnumber="13" name="TSHours_6">
    <number>8</number>
    </entrydata>
    - <entrydata columnnumber="14" name="TSHours_7">
    <number>8</number>
    </entrydata>
    </viewentry>
    - <viewentry position="1.1.1" noteid="8000000C"
    children="2" descendants="2" siblings="2">
    - <entrydata columnnumber="2" name="$15"
    category="true">
    <text>Steven Rieger</text>
    </entrydata>
    - <entrydata columnnumber="7" name="TSTotHours">
    <number>40</number>
    </entrydata>
    - <entrydata columnnumber="8" name="TSHours_1">
    <number>0</number>
    </entrydata>
    - <entrydata columnnumber="9" name="TSHours_2">
    <number>4</number>
    </entrydata>
    - <entrydata columnnumber="10" name="TSHours_3">
    <number>4</number>
    </entrydata>
    - <entrydata columnnumber="11" name="TSHours_4">
    <number>8</number>
    </entrydata>
    - <entrydata columnnumber="12" name="TSHours_5">
    <number>8</number>
    </entrydata>
    - <entrydata columnnumber="13" name="TSHours_6">
    <number>8</number>
    </entrydata>
    - <entrydata columnnumber="14" name="TSHours_7">
    <number>8</number>
    </entrydata>
    </viewentry>
    - <viewentry position="1.1.1.1"
    unid="8625721300797D8686257383001826AE" noteid="B4E"
    siblings="2">
    - <entrydata columnnumber="3" name="$178">
    <number>0</number>
    </entrydata>
    - <entrydata columnnumber="4" name="TSPCompany">
    <text>101955 - Acme Company, Inc.</text>
    </entrydata>
    - <entrydata columnnumber="5" name="TSPProject">
    <text>P03036 - CAC 07/08</text>
    </entrydata>
    - <entrydata columnnumber="6" name="TSPTask">
    <text>10134 - Import from Access to Notes</text>
    </entrydata>
    - <entrydata columnnumber="7" name="TSTotHours">
    <number>24</number>
    </entrydata>
    - <entrydata columnnumber="8" name="TSHours_1">
    <text />
    </entrydata>
    - <entrydata columnnumber="9" name="TSHours_2">
    <text />
    </entrydata>
    - <entrydata columnnumber="10" name="TSHours_3">
    <text />
    </entrydata>
    - <entrydata columnnumber="11" name="TSHours_4">
    <text />
    </entrydata>
    - <entrydata columnnumber="12" name="TSHours_5">
    <number>8</number>
    </entrydata>
    - <entrydata columnnumber="13" name="TSHours_6">
    <number>8</number>
    </entrydata>
    - <entrydata columnnumber="14" name="TSHours_7">
    <number>8</number>
    </entrydata>
    </viewentry>

    If the depth of the structure is constant, you can do it in a
    single function call. If you need to go down an unknown number of
    nesting levels, your function will need to be recursive.
    XML.children() gives you an XMLList of the child nodes. You
    can for-loop over this XMLList. Inside the for loop, add thexml you
    want to the new XML object.
    Tracy

  • Error in Visual Editor for java with eclipse

    hello eb
    till i ysterday i used visual editor for java with eclipse normally without any problem but to day when i opened eclipse it display me this error :
    Error trying to set new File into editor
    Motif : java.lang.NullPointerException
    and i think that the problem comes from the visual editor plugin because when i add a new frame or even for the old frame it dosent display for me the graphical component like every time
    if si has the solution or can advise me thank you alot and i really dont know what to do .
    it is for my stydy project and i have to finish xorking as fast as possible so if so can help me

    well this forum here is the official java-forum by Sun.
    you are asking for help on Eclipse, a software made by IBM since the cooperation between the two werent that bright all the time.(hence the name eclipse)
    i just looked a few hours myself, and the latest version of the VE was suited for 3.0.2, the version fitting to the latest 3.1 build of eclipse, was still just a release candidate.
    wait a few days/weeks for a final build and retry.

  • I need to add a new report to the application that is done using visual studio and SSRS and SQL Server 2008

    I have an application that is done using SSRS on visual studio and it connects to the report server on SQL server 2008 environment.
    I've been changing the existing reports using visual studio 2008 and modifying the reports on the report server. How do I add a new report to the application ? I created a new report and deployed it on the report server but it didn't show up in the application.
    I can access the application source code on visual studio 2010 and TFS (Team Foundation). Thanks. 

    Hi,
    I have a question. This application retrieves SSRS reports from the report sever. When I download the reports
    from the SQL Server I can open them in visual studio 2008 but they don't open in visual studio 2010. I can access the application files on visual studio 2010 and team foundation server 2010. I was unable to open team foundation server 2008 on visual studio
    2008. The issue is that I am unable to add a report with a new name to the application. I use visual studio 2008 to deploy the reports on the report server but it has to be the same name to be able to run the report from the application. I can deploy any report
    on the report server but I can't access it from the application unless it has to be the same name as the present reports. If I keep the report the same name then it will replace the old report and the new report will run from the application. But only if it's
     the same name. I guess when I add a new report to the application with a new name I am supposed to add a definition in the application C sharp files  on visual studio 2010 so that the new report will show in the application. What's your opinion
    ? I have attached 2 images of the application and team foundation server 2010 and the report server.
    Thanks. 

  • Visual Editor locking up application

    It's been a long standing bug that when I open up a file called Header.jsp it locks up JDeveloper. The entire UI becomes responsive, and I need to kill off the process and start it back up to continue working.
    Is there anyway to turn off the visual editor so it will not hang JDeveloper since I never use it anyway? Or is there a fix for JDeveloper 10.1.3.3 that works around the jsp issues?

    I cannot paste the code due to it being a closed project. However setting the default editor to source fixed it, thank you so much! If I ever figure out what's hanging up the visual editor with the jsp code I'll be sure to post an example here for anyone interested.
    I've been through the preferences at least a hundred times over the course of the years and have never noticed the file types settings.

  • Eclipse Visual Editor-not working-palette no icons, no visual capabilities

    Hello,
    I installed eclipse recently with the intention of using it to lay out java components in my applications. I have installed GEF, EMF and the visual editor with the exception of the WEP parts, as eclipse said they had invalid licences. I have the problems mentioned in the title and eclipse does not bring up an option to install the WEP components of the visual editor any more. Does anyone know anything about how this could be fixed? Thanks in advance,
    Paddy.

    I don't think it aims to be the best. It's not even close to working. You can do really simple things, and nothing more. And you can't first write the class by hand, and then switch over to the UI builder, and you aren't allowed to touch the code if you started in the UI builder. (This is how it was about a year ago).
    The free
    Eclipse should be very good at core features but also
    be a platform for plug-ins. If it's too good at
    everything it can't attract commersial initiatives.
    If this has worked there should be a better GUI
    builder for sale than the one you can get for free.
    But I don't know if there is really.I haven't seen any good ones for sale, but I've seen that borland will build the next generation of JBuilder on the Eclipse platform, so I think that they will sell their UI builder as a plugin.
    /Kaj

  • SQL JOIN with BPM sql component

    Hello friends.
    How to use SQL JOIN with BPM sql component?
    The tables objects are created but the joined tables belong to different sql components .
    I tried something like that, but a error "table doesn't exist" occours.
    Ex:
    for each element in
    SELECT imuImovelCd
    FROM IMOVEIS_URBANOS,
    Integracao.FGLP.IMOVEIS_PRE_EDITAIS
    WHERE IMOVEIS_URBANOS.imuImovelCd = Integracao.FGLP.IMOVEIS_PRE_EDITAIS.ipeImuCd
    AND Integracao.FGLP.IMOVEIS_PRE_EDITAIS.ipePedNr = 1
    AND Integracao.FGLP.IMOVEIS_PRE_EDITAIS.ipePedAa = 2008
    do
    extend this.imoveis using cdImovel = element.imuimovelcd,
                                  nrImovel = call(DEC_ENDERECO, codimovel : element.imuimovelcd, tipoimovel : 1)
    end
    Edited by: user9008295 on 26/01/2010 05:19

    ok, ok you are right.
    When I try use SQL Statement to make a JOIN with 2 tables on different sql objects, BPM returns "table dosn't exists".
    So.... I change my code. I dont know if this is the best way to do, but... i hope u, or everyone, can help me to do a best work.
    This code works fine.
    for each element in
    SELECT ipeImuCd
         FROM Integracao.FGLP.IMOVEIS_PRE_EDITAIS
         WHERE Integracao.FGLP.IMOVEIS_PRE_EDITAIS.ipePedNr = 1
         AND Integracao.FGLP.IMOVEIS_PRE_EDITAIS.ipePedAa = 2008
    do
         for each element2 in
              SELECT imuImovelDv
              FROM IMOVEIS_URBANOS
              WHERE imuImovelCd = element.ipeImuCd
         do
              extend this.imoveis using cdDvImovel = String(element2.imuImovelDv),
                                            cdImovel = Decimal(element.ipeImuCd),
                                            endereco = call(DEC_ENDERECO, codimovel : element.ipeImuCd, tipoimovel : 1)
         end
    end
    Thx a lot!!!

  • Using Visual Studio as an HTML editor with SharePoint's Design Manager

    I'm building a master page using Design Manager. I've mapped a network drive so that I can access the MasterPage.html file with an HTML editor.
    I'd like to use Visual Studio 2012 as my HTML editor.  But, when I modify MasterPage.html in VS, it creates a MasterPage.html~RF9158aed.TMP file alongside the MasterPage.html and MasterPage.master files, which breaks the master page in SharePoint.
    I can modify MasterPage.html successfully with NotePad.  I can also modify an html file, that is not associated with a folder in SharePoint via a networked drive, with VS.
    Can I use Visual Studio as an HTML editor in this scenario?  If so, what am I doing wrong?
    Your help would be much appreciated.
    Thanking you in anticipation.
    Roger
    rogerwithnell

    The TMP file is used by VS to save off changes in the file your working on, so you can perform Undos for instance.  If you shut down VS it should clean those up for you.  However, this can be a challenge if you're still working on the file.
    I would just make a copy of the MasterPage and place it in a folder outside the mapped folder.  Then you can simply copy and paste it back into the mapped folder.
    FYI, don't do this with any OOTB MasterPages!  Please make a copy and rename one that comes with SP, you don't want to change those in case you need to revert back.
    Good luck!
    Brandon Atkinson
    Blog: http://sharepointbrandon.com

  • How can I use eCompanion in the Author mode with the visual editor in Firefox?

    Our college uses eCompanion, but the current platform on works with the visual editor in the XP version of the Windows operating system. Online Chat help said that using Firefox with the Xihna Here plugin was a successful work around. I am unable to find information about the above listed plugin. I need help.

    I have been experiencing similar problems with the HTML Editor and have managed to find an answer that should start to answer some of my questions. The Apex HTML Editor Standard is actually an HTML editor called FCKeditor. The FCKeditor has a Javascript API that can be found at http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/JavaScript_API. Unfortuately this doesn't seem to give the whole answer and I found more at http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:49607.
    I needed to get the text entered within my html editor standard (e.g. P1_MYTEXT) and use it within my javascript function. I did this by using the following script
    <script language="JavaScript" type="text/javascript">
    function showtext(){
    var oEditor = FCKeditorAPI.GetInstance('P1_MYTEXT');
    var editortext = escape(oEditor.GetXHTML(oEditor.FormatOutput));
    alert(editortext);
    </script>
    Hope this helps.
    Matthew

Maybe you are looking for

  • Podcasts Still in Folder Even After Deleting

    Hi, I'm having a problem with itunes retaining podcasts, even after I delete them. I always click the option "Move to Recycle Bin," but a recent cruise through my itunes folder under My Music revealed that many of the supposedly deleted podcasts are

  • Finder: graphic issues while in icon view

    Hi there, my Macbook Pro becomes more and more sluggish since i upgraded to Yosemite. Worst thing i noticed is icon view in Finder. It does not show up correctly and has some weird graphic issues. I made a video while using the guest account: http://

  • Late email notifications?

    Not a big deal, just turning into an odd annoyance. Lately I will jump on the iPhone and read some emails. I will have it "check email" and it will bring a few in. After reading the emails I either go to another application or turn the phone back :of

  • Value table not appearing..

    Hi, I have created one ZTABLE and one of the field is GL a/c number and for that field I have used standard data element HKONT which is having domain SAKNR. For this domain value table is already assigned and that is SKA1. But I can't able to see F4

  • Download and placing a remote pdf in an Illustrator Document.

    I'm trying to make an Illustrator that while download a pdf from a remote url and then allow the user place this on the page. I can download the pdf object no problem, but the PlacedItem needs a file handle. Is this possible or is it restricted due t