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 7917495
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T15:10:12+00:00 2026-06-03T15:10:12+00:00

HTML has a Document Object Model, which Javascript can then manipulate / move around.

  • 0

HTML has a Document Object Model, which Javascript can then manipulate / move around.

When I create GUIs in Swing — the model appears to be very difference (I don’t know the name of the model), since I’m creating layout managers, and sticking objects inside of them.

My question: is there someway to manipulate Java GUis in a DOM like manner?

[For example, I want to be able to delete / add nodes, move childs around, etc …]

Thanks!

  • 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-06-03T15:10:14+00:00Added an answer on June 3, 2026 at 3:10 pm

    For Swing components, everything starts from a set of JFrame’s (you can also have JWindow’s and JDialog’s, but you usually have at least one root frame). Most likely, all you care about is the contentPane of that JFrame (but you could care also about its ownedWindows, etc…).

    So from the JFrame, you can get the content pane as following:

    Container contentPane = frame.getContentPane();
    

    From there, you can start going down the Tree of components, using:

    Component[] children = contentPane.getComponents();
    

    From a child, you can get its parent with:

    Container parent = child.getParent();
    

    To add a component to a container:

    container.add(someComponent);
    container.validate();
    

    To remove a component from a container:

    container.remove(someComponent);
    container.validate();
    

    To move a component from one Container to another, simply remove it from one and add it to the other.

    I am not sure this answers your question. It would be easier if you could post real examples of what you are trying to do.

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

Sidebar

Related Questions

Suppose a HTML document has a iframe. Using javascript,I want to detect ,on load
I have XML tag that has the content which is HTML document. <xml-tag> <!--
Page1.html has <html><head> </head> <body> [<span class=foo>span unchanged</span>] <script type=text/javascript> var a = document.getElementsByClassName('foo').item(0);
My html has an extension which embeded by other application: document.documentElement.appendChild((function () { var
I want to parse an html document after it has loaded and discover all
I am try to write inside html document. this is my javascript code: <script
I have a document that has two content types: text/xml and text/html. I would
I have an HTML document stored in memory as an Linq-to-XML object tree. How
jQuery has an attr() method which retrieves the value of a given HTML attribute.
I am having issue in checking which input has been clicked using unobstructive javascript.

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.