I have very simple grammar:
E->E+T|T
T->T*F|F
F->(E)|id
And i want to extend it to support unar operations(IMHO this is correct grammar but it may be wrong because i'm real n00b in grammars, parsers, lexers, etc.):
E->E+T|T
T->T*F|F
F->+F|(E)|id
The real problem comes when i'm trying to update parsing table:

So the question is how should i edit this table to provide unary operations support(based on described grammar) ?
P.S. Anyway, i will be very appreciate for any help with parsing ariphmetic expression in Java(or any other OO language) using LR(k)(or LALR) parser ^_^
P.S.2. Parser generators are not suitable in this case.