The Great Renamening of 2020

This commit is contained in:
Sebastian Hartte
2020-06-22 12:14:54 +02:00
parent abe3334488
commit b4471b1abb
441 changed files with 3395 additions and 3468 deletions
@@ -28,12 +28,12 @@ import appeng.api.storage.data.IAEItemStack;
import appeng.items.materials.MaterialType;
import appeng.util.InventoryAdaptor;
public final class BasicItemStorageCell extends AbstractStorageCell<IAEItemStack> {
public final class BasicStorageCellItem extends AbstractStorageCell<IAEItemStack> {
protected final int perType;
protected final double idleDrain;
public BasicItemStorageCell(Properties props, final MaterialType whichCell, final int kilobytes) {
public BasicStorageCellItem(Properties props, final MaterialType whichCell, final int kilobytes) {
super(props, whichCell, kilobytes);
switch (whichCell) {
case ITEM_1K_CELL_COMPONENT:
@@ -37,9 +37,9 @@ import appeng.api.storage.channels.IItemStorageChannel;
import appeng.items.AEBaseItem;
import appeng.items.contents.CellConfig;
public class ItemCreativeStorageCell extends AEBaseItem implements ICellWorkbenchItem {
public class CreativeStorageCellItem extends AEBaseItem implements ICellWorkbenchItem {
public ItemCreativeStorageCell(Properties props) {
public CreativeStorageCellItem(Properties props) {
super(props);
}
@@ -43,12 +43,12 @@ import appeng.items.AEBaseItem;
import appeng.spatial.SpatialDimensionManager;
import appeng.spatial.StorageHelper;
public class ItemSpatialStorageCell extends AEBaseItem implements ISpatialStorageCell {
public class SpatialStorageCellItem extends AEBaseItem implements ISpatialStorageCell {
private static final String TAG_DIMENSION_ID = "dimension_id";
private final int maxRegion;
public ItemSpatialStorageCell(Properties props, final int spatialScale) {
public SpatialStorageCellItem(Properties props, final int spatialScale) {
super(props);
this.maxRegion = spatialScale;
}
@@ -38,9 +38,9 @@ import appeng.util.prioritylist.IPartitionList;
import appeng.util.prioritylist.MergedPriorityList;
import appeng.util.prioritylist.PrecisePriorityList;
public class ItemViewCell extends AEBaseItem implements ICellWorkbenchItem {
public class ViewCellItem extends AEBaseItem implements ICellWorkbenchItem {
public ItemViewCell(Properties properties) {
public ViewCellItem(Properties properties) {
super(properties);
}
@@ -54,7 +54,7 @@ public class ItemViewCell extends AEBaseItem implements ICellWorkbenchItem {
continue;
}
if ((currentViewCell.getItem() instanceof ItemViewCell)) {
if ((currentViewCell.getItem() instanceof ViewCellItem)) {
final IItemList<IAEItemStack> priorityList = AEApi.instance().storage()
.getStorageChannel(IItemStorageChannel.class).createList();