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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T23:51:53+00:00 2026-06-11T23:51:53+00:00

I am wondering what I can do to make this more readable and clean.

  • 0

I am wondering what I can do to make this more readable and clean. By readable, I mean easier to read for other developers.

I don’t really want to have the same code twice. I am thinking that I could make some method or methods to make it shorter, but I’m not exactly sure…

@Override
public void dispatchEvent(Event event) {
    checkNotNull(event);

    CancellableEvent cancellableEvent = null;
    boolean cancellable;
    if (cancellable = event instanceof CancellableEvent) {
        cancellableEvent = (CancellableEvent) event;
        checkArgument(cancellableEvent.isCancelled());
    }

    // Ignore-cancellation event handlers will run
    for (EventPriority priority : EventPriority.values()) {
        Map<Method, EventListener> internalMapping = getRegistry().getMethodMap(event.getClass(), priority, true);
        if (internalMapping != null) {
            for (Entry<Method, EventListener> entry : internalMapping.entrySet()) {
                try {
                    entry.getKey().invoke(entry.getValue(), event);
                } catch (IllegalAccessException e) {
                    e.printStackTrace();
                } catch (IllegalArgumentException e) {
                    e.printStackTrace();
                } catch (InvocationTargetException e) {
                    /*
                     * Delegate any exceptions that occur from
                     * the method to a runtime exception.
                     */
                    throw new RuntimeException(e);
                }
            }
        }
    }

    // Event handlers that consider cancellation will run
    for (EventPriority priority : EventPriority.values()) {
        Map<Method, EventListener> internalMapping = getRegistry().getMethodMap(event.getClass(), priority, false);
        if (internalMapping != null) {
            for (Entry<Method, EventListener> entry : internalMapping.entrySet()) {
                try {
                    entry.getKey().invoke(entry.getValue(), event);
                } catch (IllegalAccessException e) {
                    e.printStackTrace();
                } catch (IllegalArgumentException e) {
                    e.printStackTrace();
                } catch (InvocationTargetException e) {
                    /*
                     * Delegate any exceptions that occur from
                     * the method to a runtime exception.
                     */
                    throw new RuntimeException(e);
                }
                // Immediately return in the case of the event being cancelled.
                if (cancellable && cancellableEvent.isCancelled()) {
                    return;
                }
            }
        }
    }
}
  • 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-11T23:51:54+00:00Added an answer on June 11, 2026 at 11:51 pm

    I’m assuming that what you really want to do is eliminate those two loops. I would just brute force it and extract a method containing all the necessary arguments for example:

      @Override
      public void dispatchEvent(Event event) {
          checkNotNull(event);
    
          CancellableEvent cancellableEvent = null;
          boolean cancellable;
          if (cancellable = event instanceof CancellableEvent) {
              cancellableEvent = (CancellableEvent) event;
              checkArgument(cancellableEvent.isCancelled());
          }
    
         fireEvents(false, event, cancellableEvent, cancellable);
         fireEvents(true, event, cancellableEvent, cancellable);
    
      }
    
      private void fireEvents(boolean considerCancellation, Event event, CancellableEvent cancellableEvent, boolean cancellable)
      {
         // Event handlers that consider cancellation will run
         for (EventPriority priority : EventPriority.values()) {
             Map<Method, EventListener> internalMapping = getRegistry().getMethodMap(event.getClass(), priority, ! considerCancellation);
             if (internalMapping != null) {
                 for (Map.Entry<Method, EventListener> entry : internalMapping.entrySet()) {
                     try {
                         entry.getKey().invoke(entry.getValue(), event);
                     } catch (IllegalAccessException e) {
                         e.printStackTrace();
                     } catch (IllegalArgumentException e) {
                         e.printStackTrace();
                     } catch (InvocationTargetException e) {
                         /*
                          * Delegate any exceptions that occur from
                          * the method to a runtime exception.
                          */
                         throw new RuntimeException(e);
                     }
                     // Immediately return in the case of the event being cancelled.
                     if ( considerCancellation && cancellable && cancellableEvent.isCancelled()) {
                         return;
                     }
                 }
             }
         }
      }
    

    Then you can refactor the new fireEvents method and clean it up.

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

Sidebar

Related Questions

I'm wondering how I can make this code safer, I'm using it as login.php:
wondering if I can make my javascript more efficient. I have a var JSP
I wondering how I can make a UITabBat like this: The height of this
Just wondering how I can make my app open automatically at login, but make
I was wondering how I can make a script load powerpoint file, advance slides
I'm now wondering whether we can make some sort of SSL server based on
I was wondering how does Nike website make the change you can see when
I have written the following code which works, but im wondering can I make
I'm wondering if this code ... StringBuilder sb = new StringBuilder(Please read the following
was wondering how can I create a sub drop down box upon selecting a

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.