[
https://issues.jboss.org/browse/FORGE-1445?page=com.atlassian.jira.plugin...
]
Robert Balent updated FORGE-1445:
---------------------------------
Status: Pull Request Sent (was: Open)
Git Pull Request:
https://github.com/forge/core/pull/455
I've created pull request[1]. Please comment if you have any concerns or you want to
change anything. Now it is showing fields and methods separately.
Thanks.
[1]
https://github.com/forge/core/pull/455
ls command on an entity is not as clear
---------------------------------------
Key: FORGE-1445
URL:
https://issues.jboss.org/browse/FORGE-1445
Project: Forge
Issue Type: Sub-task
Components: UI - Shell
Affects Versions: 2.0.0.Beta4
Reporter: Antonio Goncalves
Assignee: Robert Balent
Fix For: 2.x Future
When I've created an entity and type the {{ls}} command, in Forge 1.x I have the
following (in color) :
{code}
[forge1] Talk.java $ ls
[fields]
private::Date::date; private::Long::id;
private::String::description; private::String::room;
private::String::title;
private::int::version;
[methods]
public::equals(Object that)::boolean
public::getDate()::Date
public::getDescription()::String
public::getId()::Long
public::getRoom()::String
public::getTitle()::String
public::getVersion()::int
public::hashCode()::int
public::setDate(final Date date)::void
public::setDescription(final String description)::void
public::setId(final Long id)::void
public::setRoom(final String room)::void
public::setTitle(final String title)::void
public::setVersion(final int version)::void
public::toString()::String
{code}
While in Forge 2.Beta I have :
{code}
[Talk.java]$ ls
date::Date getDate()::Date getRoom()::String
hashCode()::int setDate(Date)::void setRoom(String)::void
title::String
description::String getDescription()::String getTitle()::String
id::Long setDescription(String)::void setTitle(String)::void
toString()::String
equals(Object)::boolean getId()::Long getVersion()::int
room::String setId(Long)::void setVersion(int)::void
version::int
{code}
Despite the Forge 1.x output being in color and not the Forge 2.Beta output (which always
helps in readability), there is not separation between {{[fields]}} and {{[methods]}}
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)