Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6950203
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T14:03:48+00:00 2026-05-27T14:03:48+00:00

I’m getting an exception in Eclipse. I am trying to create web application project

  • 0

I’m getting an exception in Eclipse.
I am trying to create web application project using the GWT plugin. I have created a composite (name: Browser). After that I am trying to add browser composite in class (name: Home_Page) using Choose Component option.

When I add it give me error on design view:

Exception during creation of browser. See error log for detail.

Please help me to rectify this problem.

public class Browse extends Composite {
    static HorizontalSplitPanel RepositoryDisplayPanel = new HorizontalSplitPanel();

public Browse() {
    //RootPanel rootPanel = RootPanel.get();
            RepositoryDisplayPanel.setSplitPosition("200px");
            //rootPanel.add(RepositoryDisplayPanel);
            RepositoryDisplayPanel.setSize("762", "450");
            getObjectStoreTree();
            getObjectStoreCellTable();

}
public void getObjectStoreTree() {
    Tree repositories =new Tree();

    String repo[]={"ecm","ctmos","fhko","zert"};
    for(int i=0;i<4;i++){

        TreeItem reposiItem = new TreeItem();
        reposiItem.setText(repo[i]);
        reposiItem.setStyleName("cmis-TreeItem-objectstore");
        repositories.addItem(reposiItem);


    }
    RepositoryDisplayPanel.add(repositories);

}
public void getObjectStoreCellTable(){

    final CellTable<ContentofObjectStore> table = new CellTable<ContentofObjectStore>();
    table.setPageSize(3);

    // Create name Coloumn
    TextColumn<ContentofObjectStore> versionColumn = new TextColumn<ContentofObjectStore>() {
          @Override
          public String getValue(ContentofObjectStore object) {
            return object.version;
          }
        };


    TextColumn<ContentofObjectStore> nameColumn = new TextColumn<ContentofObjectStore>() {
          @Override
          public String getValue(ContentofObjectStore object) {
            return object.name;
          }
        };


    TextColumn<ContentofObjectStore> sizeColumn = new TextColumn<ContentofObjectStore>() {
          @Override
          public String getValue(ContentofObjectStore object) {
              return object.size;
           }
         };

    TextColumn<ContentofObjectStore> modified_byColumn = new TextColumn<ContentofObjectStore>() {
          @Override
          public String getValue(ContentofObjectStore object) {
              return object.modified_by;
          }
         };


         DateCell dateCell = new DateCell();
         Column<ContentofObjectStore, Date> dateColumn = new Column<ContentofObjectStore,Date>(dateCell){
             @Override
             public Date getValue(ContentofObjectStore object){
                 return object.modified_on;
             }

         };


    TextColumn<ContentofObjectStore> major_versionColumn = new TextColumn<ContentofObjectStore>() {
          @Override
          public String getValue(ContentofObjectStore object) {
              return object.major_version;
           }
         };
        // Add the columns.
         table.addColumn(nameColumn, "Name");
         table.addColumn(versionColumn, "Version");
         table.addColumn(sizeColumn, "Size");
         table.addColumn(modified_byColumn, "Modified By");
         table.addColumn(dateColumn,"Modified On");
         table.addColumn(sizeColumn, "Major Version");

         RepositoryDisplayPanel.add(table);
         table.setHeight("188px");

}

}

in error log its says:

unhandled loop exception “java.lang.StackOverflowError at
org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at
org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) at
org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1077) at
org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1058) at
org.eclipse.swt.widgets.Text.wmCommandChild(Text.java:2610) at
org.eclipse.swt.widgets.Control.WM_COMMAND(Control.java:4669) at
org.eclipse.swt.widgets.Control.windowProc(Control.java:4531) at
org.eclipse.swt.widgets.Display.windowProc(Display.java:4972) at
org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at
org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:2425) at
org.eclipse.swt.widgets.Text.callWindowProc(Text.java:255) at
org.eclipse.swt.widgets.Control.windowProc(Control.java:4623) at
org.eclipse.swt.widgets.Text.windowProc(Text.java:2254) at
org.eclipse.swt.widgets.Display.windowProc(Display.java:4972) at
org.eclipse.swt.internal.win32.OS.SetWindowTextW(Native Method) at
org.eclipse.swt.internal.win32.OS.SetWindowText(OS.java:3446) at
org.eclipse.swt.widgets.Text.setText(Text.java:1977) at
org.eclipse.wb.internal.css.dialogs.style.AbstractTextButtonValueEditor.updateControlsFromValue(AbstractTextButtonValueEditor.java:96)
at
org.eclipse.wb.internal.css.dialogs.style.AbstractTextButtonValueEditor.access$1(AbstractTextButtonValueEditor.java:89)
at
org.eclipse.wb.internal.css.dialogs.style.AbstractTextButtonValueEditor$3.changed(AbstractTextButtonValueEditor.java:82)
at
org.eclipse.wb.internal.css.semantics.AbstractValue.notifyListeners(AbstractValue.java:52)
at
org.eclipse.wb.internal.css.semantics.SimpleValue.setValue(SimpleValue.java:75)
at
org.eclipse.wb.internal.css.dialogs.style.AbstractTextButtonValueEditor$1.modifyText(AbstractTextButtonValueEditor.java:64)
at
org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:179)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) at
org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1077) at
org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1058) at
org.eclipse.swt.widgets.Text.wmCommandChild(Text.java:2610) at
org.eclipse.swt.widgets.Control.WM_COMMAND(Control.java:4669) at
org.eclipse.swt.widgets.Control.windowProc(Control.java:4531) at
org.eclipse.swt.widgets.Display.windowProc(Display.java:4972) at
org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at
org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:2425) at
org.eclipse.swt.widgets.Text.callWindowProc(Text.java:255) at
org.eclipse.swt.widgets.Control.windowProc(Control.java:4623) at
org.eclipse.swt.widgets.Text.windowProc(Text.java:2254) at
org.eclipse.swt.widgets.Display.windowProc(Display.java:4972) at
org.eclipse.swt.internal.win32.OS.SetWindowTextW(Native Method) at
org.eclipse.swt.internal.win32.OS.SetWindowText(OS.java:3446) at
org.eclipse.swt.widgets.Text.setText(Text.java:1977) at
org.eclipse.wb.internal.css.dialogs.style.AbstractTextButtonValueEditor.updateControlsFromValue(AbstractTextButtonValueEditor.java:96)
at
org.eclipse.wb.internal.css.dialogs.style.AbstractTextButtonValueEditor.access$1(AbstractTextButtonValueEditor.java:89)
at
org.eclipse.wb.internal.css.dialogs.style.AbstractTextButtonValueEditor$3.changed(AbstractTextButtonValueEditor.java:82)
at
org.eclipse.wb.internal.css.semantics.AbstractValue.notifyListeners(AbstractValue.java:52)
at
org.eclipse.wb.internal.css.semantics.SimpleValue.setValue(SimpleValue.java:75)
at
org.eclipse.wb.internal.css.dialogs.style.AbstractTextButtonValueEditor$1.modifyText(AbstractTextButtonValueEditor.java:64)
at
org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:179)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) at
org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1077) at
org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1058) at
org.eclipse.swt.widgets.Text.wmCommandChild(Text.java:2610) at
org.eclipse.swt.widgets.Control.WM_COMMAND(Control.java:4669) at
org.eclipse.swt.widgets.Control.windowProc(Control.java:4531) at
org.eclipse.swt.widgets.Display.windowProc(Display.java:4972) at
org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at
org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:2425) at
org.eclipse.swt.widgets.Text.callWindowProc(Text.java:255) at
org.eclipse.swt.widgets.Control.windowProc(Control.java:4623) at
org.eclipse.swt.widgets.Text.windowProc(Text.java:2254) at
org.eclipse.swt.widgets.Display.windowProc(Display.java:4972) at
org.eclipse.swt.internal.win32.OS.SetWindowTextW(Native Method) at
org.eclipse.swt.internal.win32.OS.SetWindowText(OS.java:3446)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T14:03:49+00:00Added an answer on May 27, 2026 at 2:03 pm

    Stack overflow errors (the first line in your stack trace) don’t have very many causes. The most likely scenario is that when you’re adding the composite that you’re somehow doing infinite recursion (that is, a method calling itself, which calls itself, which calls itself, which calls itself…).

    Look at the specs for whatever you’re using and make sure you’re adding the composite correctly. It could just be a typo somewhere, but it sounds like the issue is going to be near the insertion point.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

That's pretty much it. I'm using Nokogiri to scrape a web page what has
Basically, what I'm trying to create is a page of div tags, each has
I have thousands of HTML files to process using Groovy/Java and I need to
I'm trying to create an if statement in PHP that prevents a single post
I am trying to loop through a bunch of documents I have to put
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and
I am trying to understand how to use SyndicationItem to display feed which is
I have a jquery bug and I've been looking for hours now, I can't

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.