Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.espressif.idf.core.tools.vo;

import java.util.Objects;

import com.google.gson.annotations.Expose;

public class IdfInstalled
Expand Down Expand Up @@ -77,4 +79,21 @@ public void setPython(String python)
this.python = python;
}

@Override
public boolean equals(Object obj)
{
if (this == obj)
return true;
if (obj == null || getClass() != obj.getClass())
return false;
IdfInstalled that = (IdfInstalled) obj;
return Objects.equals(id, that.id);
}

@Override
public int hashCode()
{
return Objects.hash(id);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class Messages extends NLS
public static String EspIdfManagerActivateCol;
public static String EspIdfManagerNameCol;
public static String EspIdfManagerReloadBtnToolTip;
public static String IDFGuideLinkLabel_Text;
public static String IDFInfoLabel_Text;
public static String EIMButtonDownloadText;
public static String EIMButtonLaunchText;

Expand All @@ -32,6 +32,24 @@ public class Messages extends NLS
public static String EimJsonChangedMsgDetail;
public static String EimJsonStateChangedMsgDetail;

public static String ESPIDFMainTablePage_ActiveBtnName;

public static String ESPIDFMainTablePage_ActiveBtnTooltip;

public static String ESPIDFMainTablePage_ActiveLbl;

public static String ESPIDFMainTablePage_EIMButtonTooltip;

public static String ESPIDFMainTablePage_MainContentGroupLbl;

public static String ESPIDFMainTablePage_RefreshEnvBtnName;

public static String ESPIDFMainTablePage_RefreshEnvBtnTooltip;

public static String ESPIDFMainTablePage_SettingUpLbl;

public static String ESPIDFMainTablePage_StatusColumnName;

public static String MsgYes;
public static String MsgNo;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public void createPartControl(Composite parent)

if (input instanceof EimEditorInput eimInput)
{
ESPIDFMainTablePage espidfMainTablePage = ESPIDFMainTablePage.getInstance(eimInput.getEimJson());
ESPIDFMainTablePage espidfMainTablePage = new ESPIDFMainTablePage(eimInput.getEimJson());
espidfMainTablePage.createPage(parent);
if (eimInput.isFirstStartup())
{
Expand Down
Loading
Loading