Jump to content
  • 0

[Request] How to make a complete refactor with eclipse ? (easy plz)


GoDofAdeN

Question

as the title says

I like to know how to make a complete refactor with eclipse (like from net.sf.2j to like com.l2jxxxx)

 

by complete i mean to include the imports of each file into that directory so files wont look like :

 

package net.sf.l2j.gameserver;

 

import java.util.logging.Logger;

 

import net.sf.l2j.Config;

import net.sf.l2j.gameserver.instancemanager.CastleManager;

import net.sf.l2j.gameserver.model.L2Clan;

import net.sf.l2j.gameserver.model.entity.Castle;

import net.sf.l2j.gameserver.model.itemcontainer.ItemContainer;

 

But like :

 

package com.l2jxxxxx.gameserver;

 

import java.util.logging.Logger;

 

import com.l2jxxxxx.Config;

import com.l2jxxxxx.gameserver.instancemanager.CastleManager;

import com.l2jxxxxx.gameserver.model.L2Clan;

import com.l2jxxxxx.gameserver.model.entity.Castle;

import com.l2jxxxxx.gameserver.model.itemcontainer.ItemContainer;

 

 

THANK YOU!

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

c/p scripts into the net.sf.l2j package and rename

 

can you explain better ? maybe with some immages or a video ? (if you want to do a video, will be nice for all i think - use camtasia) :D

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...